Skip to content

Commit 922d136

Browse files
mmollxalopp
authored andcommitted
Fix issues found by phan
1 parent 6711062 commit 922d136

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

MO4/Sniffs/Arrays/ArrayDoubleArrowAlignmentSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ArrayDoubleArrowAlignmentSniff implements Sniff
3939
/**
4040
* Registers the tokens that this sniff wants to listen for.
4141
*
42-
* @return array(int)
42+
* @return array<int, int>
4343
* @see Tokens.php
4444
*/
4545
public function register()

MO4/Sniffs/Arrays/MultiLineArraySniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class MultiLineArraySniff implements Sniff
3636
/**
3737
* Registers the tokens that this sniff wants to listen for.
3838
*
39-
* @return array(int)
39+
* @return array<int, int>
4040
* @see Tokens.php
4141
*/
4242
public function register()

MO4/Sniffs/Commenting/PropertyCommentSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* Property Comment Sniff sniff.
1818
*
19-
* Doc blocks of class properties must be multiline and have exactly one '@var'
19+
* Doc blocks of class properties must be multiline and have exactly one var
2020
* annotation.
2121
*
2222
* @author Xaver Loppenstedt <[email protected]>

MO4/Sniffs/Formatting/UnnecessaryNamespaceUsageSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class UnnecessaryNamespaceUsageSniff implements Sniff
4343
/**
4444
* Registers the tokens that this sniff wants to listen for.
4545
*
46-
* @return array(int)
46+
* @return array<int, int>
4747
* @see Tokens.php
4848
*/
4949
public function register()

MO4/Sniffs/Strings/VariableInDoubleQuotedStringSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class VariableInDoubleQuotedStringSniff implements Sniff
3636
/**
3737
* Registers the tokens that this sniff wants to listen for.
3838
*
39-
* @return array(int)
39+
* @return array<int, string>
4040
*
4141
* @see Tokens.php
4242
*/

0 commit comments

Comments
 (0)