Skip to content

Commit

Permalink
phpcsfixed
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Mar 25, 2016
1 parent ceed267 commit a51bbb7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ return Symfony\CS\Config\Config::create()
'-phpdoc_params', /// All items of the @param, @throws, @return, @var, and @type phpdoc tags must be aligned vertically.
'-phpdoc_scalar', /// Scalar types should always be written in the same form. "int", not "integer"; "bool", not "boolean".
'-phpdoc_separation', /// Annotations of a different type are separated by a single blank line.
'-phpdoc_to_comment', /// Docblocks should only be used on structural elements
'header_comment', /// Add, replace or remove header comment.
'concat_with_spaces', /// Concatenation should be used with at least one whitespace around.
'ereg_to_preg', /// Replace deprecated ereg regular expression functions with preg. Warning! This could change code behavior.
Expand Down
1 change: 0 additions & 1 deletion src/ActiveQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

namespace hiqdev\hiart;

use Yii;
use yii\base\NotSupportedException;
use yii\db\ActiveQueryInterface;
use yii\db\ActiveQueryTrait;
Expand Down
2 changes: 1 addition & 1 deletion src/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Class Collection manages the collection of the models.
*
* @var ActiveRecord[] $models the array of models in the collection
* @var ActiveRecord[] the array of models in the collection
*/
class Collection extends Component
{
Expand Down

0 comments on commit a51bbb7

Please sign in to comment.