Completed
Branch master (6a3a35)
by Juliette
02:59
created
Sniffs/PHP/ConstantArraysUsingDefineSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     /**
27 27
      * Returns an array of tokens this test wants to listen for.
28 28
      *
29
-     * @return array
29
+     * @return integer[]
30 30
      */
31 31
     public function register()
32 32
     {
Please login to merge, or discard this patch.
Sniffs/PHP/DeprecatedFunctionsSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -631,7 +631,7 @@
 block discarded – undo
631 631
     /**
632 632
      * Returns an array of tokens this test wants to listen for.
633 633
      *
634
-     * @return array
634
+     * @return integer[]
635 635
      */
636 636
     public function register()
637 637
     {
Please login to merge, or discard this patch.
Sniffs/PHP/ForbiddenCallTimePassByReferenceSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     /**
33 33
      * Returns an array of tokens this test wants to listen for.
34 34
      *
35
-     * @return array
35
+     * @return integer[]
36 36
      */
37 37
     public function register()
38 38
     {
Please login to merge, or discard this patch.
Sniffs/PHP/NewFunctionParametersSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -715,7 +715,7 @@
 block discarded – undo
715 715
     /**
716 716
      * Returns an array of tokens this test wants to listen for.
717 717
      *
718
-     * @return array
718
+     * @return integer[]
719 719
      */
720 720
     public function register()
721 721
     {
Please login to merge, or discard this patch.
Sniffs/PHP/NewInterfacesSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
     /**
84 84
      * Returns an array of tokens this test wants to listen for.
85 85
      *
86
-     * @return array
86
+     * @return integer[]
87 87
      */
88 88
     public function register()
89 89
     {
Please login to merge, or discard this patch.
Sniffs/PHP/NewScalarTypeDeclarationsSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     /**
72 72
      * Returns an array of tokens this test wants to listen for.
73 73
      *
74
-     * @return array
74
+     * @return integer[]
75 75
      */
76 76
     public function register()
77 77
     {
Please login to merge, or discard this patch.
Sniffs/PHP/RemovedFunctionParametersSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     /**
66 66
      * Returns an array of tokens this test wants to listen for.
67 67
      *
68
-     * @return array
68
+     * @return integer[]
69 69
      */
70 70
     public function register()
71 71
     {
Please login to merge, or discard this patch.
Sniffs/PHP/RequiredOptionalFunctionParametersSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     /**
49 49
      * Returns an array of tokens this test wants to listen for.
50 50
      *
51
-     * @return array
51
+     * @return integer[]
52 52
      */
53 53
     public function register()
54 54
     {
Please login to merge, or discard this patch.
Sniffs/PHP/ValidIntegersSniff.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * Returns an array of tokens this test wants to listen for.
23 23
      *
24
-     * @return array
24
+     * @return integer[]
25 25
      */
26 26
     public function register()
27 27
     {
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     /**
102 102
      * Could the current token an potentially be a binary integer ?
103 103
      *
104
-     * @param array $token    Token stack.
104
+     * @param array $tokens    Token stack.
105 105
      * @param int   $stackPtr The current position in the token stack.
106 106
      *
107 107
      * @return bool
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     /**
127 127
      * Is the current token an invalid binary integer ?
128 128
      *
129
-     * @param array $token    Token stack.
129
+     * @param array $tokens    Token stack.
130 130
      * @param int   $stackPtr The current position in the token stack.
131 131
      *
132 132
      * @return bool
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
      * Retrieve the content of the tokens which together look like a binary integer.
150 150
      *
151 151
      * @param PHP_CodeSniffer_File $phpcsFile The file being scanned.
152
-     * @param array                $token     Token stack.
152
+     * @param array                $tokens     Token stack.
153 153
      * @param int                  $stackPtr  The position of the current token in
154 154
      *                                        the stack.
155 155
      *
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
     /**
173 173
      * Is the current token an invalid octal integer ?
174 174
      *
175
-     * @param array $token    Token stack.
175
+     * @param array $tokens    Token stack.
176 176
      * @param int   $stackPtr The current position in the token stack.
177 177
      *
178 178
      * @return bool
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
     /**
191 191
      * Is the current token a hexidecimal numeric string ?
192 192
      *
193
-     * @param array $token    Token stack.
193
+     * @param array $tokens    Token stack.
194 194
      * @param int   $stackPtr The current position in the token stack.
195 195
      *
196 196
      * @return bool
Please login to merge, or discard this patch.