Skip to content

Commit

Permalink
csfixed
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Jan 5, 2017
1 parent 21ef475 commit 9ac2538
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ HiDev config for HiSite
@link https://github.com/hiqdev/hidev-hisite
@package hidev-hisite
@license BSD-3-Clause
@copyright Copyright (c) 2016, HiQDev (http://hiqdev.com/)
@copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
EOF;

return PhpCsFixer\Config::create()
->setUsingCache(true)
->setRiskyAllowed(true)
->setRules([
->setRules(array(
'@Symfony' => true,
'header_comment' => [
'header' => $header,
Expand Down Expand Up @@ -43,7 +43,7 @@ return PhpCsFixer\Config::create()
'strict_comparison' => true,
'strict_param' => true,
'no_multiline_whitespace_before_semicolons' => true,
])
))
->setFinder(
PhpCsFixer\Finder::create()
->in(__DIR__)
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright © 2016, HiQDev (http://hiqdev.com/)
Copyright © 2016-2017, HiQDev (http://hiqdev.com/)
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ to the require section of your composer.json.
This project is released under the terms of the BSD-3-Clause [license](LICENSE).
Read more [here](http://choosealicense.com/licenses/bsd-3-clause).

Copyright © 2016, HiQDev (http://hiqdev.com/)
Copyright © 2016-2017, HiQDev (http://hiqdev.com/)
2 changes: 1 addition & 1 deletion src/config/hidev.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @link https://github.com/hiqdev/hidev-hisite
* @package hidev-hisite
* @license BSD-3-Clause
* @copyright Copyright (c) 2016, HiQDev (http://hiqdev.com/)
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
*/

return [
Expand Down
2 changes: 1 addition & 1 deletion src/config/hisite.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @link https://github.com/hiqdev/hidev-hisite
* @package hidev-hisite
* @license BSD-3-Clause
* @copyright Copyright (c) 2016, HiQDev (http://hiqdev.com/)
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
*/

return [];
2 changes: 1 addition & 1 deletion src/controllers/DefinesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @link https://github.com/hiqdev/hidev-hisite
* @package hidev-hisite
* @license BSD-3-Clause
* @copyright Copyright (c) 2016, HiQDev (http://hiqdev.com/)
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
*/

namespace hidev\hisite\controllers;
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/HiSiteController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @link https://github.com/hiqdev/hidev-hisite
* @package hidev-hisite
* @license BSD-3-Clause
* @copyright Copyright (c) 2016, HiQDev (http://hiqdev.com/)
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
*/

namespace hidev\hisite\controllers;
Expand Down
2 changes: 1 addition & 1 deletion tests/_bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @link https://github.com/hiqdev/hidev-hisite
* @package hidev-hisite
* @license BSD-3-Clause
* @copyright Copyright (c) 2016, HiQDev (http://hiqdev.com/)
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
*/

error_reporting(E_ALL);
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/HiSiteTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @link https://github.com/hiqdev/hidev-hisite
* @package hidev-hisite
* @license BSD-3-Clause
* @copyright Copyright (c) 2016, HiQDev (http://hiqdev.com/)
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
*/

namespace hidev\hisite\tests\functional;
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/controllers/HiSiteControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @link https://github.com/hiqdev/hidev-hisite
* @package hidev-hisite
* @license BSD-3-Clause
* @copyright Copyright (c) 2016, HiQDev (http://hiqdev.com/)
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
*/

namespace hidev\hisite\tests\unit\controllers;
Expand Down

0 comments on commit 9ac2538

Please sign in to comment.