Skip to content

Commit

Permalink
Fix issues found by phan
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoll authored and xalopp committed Apr 23, 2018
1 parent 6711062 commit 922d136
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MO4/Sniffs/Arrays/ArrayDoubleArrowAlignmentSniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ArrayDoubleArrowAlignmentSniff implements Sniff
/**
* Registers the tokens that this sniff wants to listen for.
*
* @return array(int)
* @return array<int, int>
* @see Tokens.php
*/
public function register()
Expand Down
2 changes: 1 addition & 1 deletion MO4/Sniffs/Arrays/MultiLineArraySniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class MultiLineArraySniff implements Sniff
/**
* Registers the tokens that this sniff wants to listen for.
*
* @return array(int)
* @return array<int, int>
* @see Tokens.php
*/
public function register()
Expand Down
2 changes: 1 addition & 1 deletion MO4/Sniffs/Commenting/PropertyCommentSniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Property Comment Sniff sniff.
*
* Doc blocks of class properties must be multiline and have exactly one '@var'
* Doc blocks of class properties must be multiline and have exactly one var
* annotation.
*
* @author Xaver Loppenstedt <xaver@loppenstedt.de>
Expand Down
2 changes: 1 addition & 1 deletion MO4/Sniffs/Formatting/UnnecessaryNamespaceUsageSniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class UnnecessaryNamespaceUsageSniff implements Sniff
/**
* Registers the tokens that this sniff wants to listen for.
*
* @return array(int)
* @return array<int, int>
* @see Tokens.php
*/
public function register()
Expand Down
2 changes: 1 addition & 1 deletion MO4/Sniffs/Strings/VariableInDoubleQuotedStringSniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class VariableInDoubleQuotedStringSniff implements Sniff
/**
* Registers the tokens that this sniff wants to listen for.
*
* @return array(int)
* @return array<int, string>
*
* @see Tokens.php
*/
Expand Down

0 comments on commit 922d136

Please sign in to comment.