Skip to content

Commit

Permalink
Use stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
kubawerlos committed May 3, 2020
1 parent e462418 commit a5a90a0
Show file tree
Hide file tree
Showing 15 changed files with 22 additions and 24 deletions.
4 changes: 2 additions & 2 deletions dev-tools/.php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ declare(strict_types=1);
/*
* This file is part of Types checker.
*
* (c) Kuba Werłos <werlos@gmail.com>
* (c) 2016-2020 Kuba Werłos
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/

return PhpCsFixerConfig\Factory::createForLibrary('Types checker')
return PhpCsFixerConfig\Factory::createForLibrary('Types checker', 'Kuba Werłos', 2016)
->setUsingCache(false)
->setFinder(
PhpCsFixer\Finder::create()
Expand Down
2 changes: 1 addition & 1 deletion dev-tools/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"phpstan/phpstan-strict-rules": "^0.12.2",
"squizlabs/php_codesniffer": "^3.5.5",
"vimeo/psalm": "^3.11.2",
"kubawerlos/php-cs-fixer-config": "dev-master"
"kubawerlos/php-cs-fixer-config": "^1.0.0"
},
"scripts": {
"analyse": [
Expand Down
16 changes: 7 additions & 9 deletions dev-tools/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Checker.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* This file is part of Types checker.
*
* (c) Kuba Werłos <werlos@gmail.com>
* (c) 2016-2020 Kuba Werłos
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/ClassCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* This file is part of Types checker.
*
* (c) Kuba Werłos <werlos@gmail.com>
* (c) 2016-2020 Kuba Werłos
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/Command/CheckCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* This file is part of Types checker.
*
* (c) Kuba Werłos <werlos@gmail.com>
* (c) 2016-2020 Kuba Werłos
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/Report/ClassReport.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* This file is part of Types checker.
*
* (c) Kuba Werłos <werlos@gmail.com>
* (c) 2016-2020 Kuba Werłos
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/Report/MethodReport.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* This file is part of Types checker.
*
* (c) Kuba Werłos <werlos@gmail.com>
* (c) 2016-2020 Kuba Werłos
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/Report/Report.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* This file is part of Types checker.
*
* (c) Kuba Werłos <werlos@gmail.com>
* (c) 2016-2020 Kuba Werłos
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/CheckerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* This file is part of Types checker.
*
* (c) Kuba Werłos <werlos@gmail.com>
* (c) 2016-2020 Kuba Werłos
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/ClassCollectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* This file is part of Types checker.
*
* (c) Kuba Werłos <werlos@gmail.com>
* (c) 2016-2020 Kuba Werłos
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Command/CheckCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* This file is part of Types checker.
*
* (c) Kuba Werłos <werlos@gmail.com>
* (c) 2016-2020 Kuba Werłos
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Report/ClassReportTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* This file is part of Types checker.
*
* (c) Kuba Werłos <werlos@gmail.com>
* (c) 2016-2020 Kuba Werłos
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Report/MethodReportTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* This file is part of Types checker.
*
* (c) Kuba Werłos <werlos@gmail.com>
* (c) 2016-2020 Kuba Werłos
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Report/ReportTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* This file is part of Types checker.
*
* (c) Kuba Werłos <werlos@gmail.com>
* (c) 2016-2020 Kuba Werłos
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
Expand Down

0 comments on commit a5a90a0

Please sign in to comment.