@@ -170,7 +170,7 @@ public static function hasParameters(File $phpcsFile, $stackPtr)
170
170
* 'name_end' => int, // The stack pointer to the last token in the parameter name.
171
171
* // This will normally be the colon, but may be different in
172
172
* // PHPCS versions prior to the version adding support for
173
- * // named parameters (PHPCS x.x.x ).
173
+ * // named parameters (PHPCS 3.6.0 ).
174
174
* 'name' => string, // The parameter name as a string (without the colon).
175
175
* 'start' => int, // The stack pointer to the first token in the parameter value.
176
176
* 'end' => int, // The stack pointer to the last token in the parameter value.
@@ -262,7 +262,7 @@ public static function getParameters(File $phpcsFile, $stackPtr)
262
262
$ firstNonEmpty = $ phpcsFile ->findNext (Tokens::$ emptyTokens , $ paramStart , ($ paramEnd + 1 ), true );
263
263
if ($ firstNonEmpty !== $ paramEnd ) {
264
264
/*
265
- * BC: Prior to support for named parameters being added to PHPCS in PHPCS 3.6.0 (?) , the
265
+ * BC: Prior to support for named parameters being added to PHPCS in PHPCS 3.6.0, the
266
266
* parameter name + the colon would in most cases be tokenized as one token: T_GOTO_LABEL.
267
267
*/
268
268
if ($ tokens [$ firstNonEmpty ]['code ' ] === \T_GOTO_LABEL ) {
@@ -271,7 +271,7 @@ public static function getParameters(File $phpcsFile, $stackPtr)
271
271
$ parameters [$ cnt ]['name ' ] = \substr ($ tokens [$ firstNonEmpty ]['content ' ], 0 , -1 );
272
272
$ paramStart = ($ firstNonEmpty + 1 );
273
273
} else {
274
- // PHPCS 3.6.0 (?) and select situations in PHPCS < 3.6.0 (?) .
274
+ // PHPCS 3.6.0 and select situations in PHPCS < 3.6.0.
275
275
$ secondNonEmpty = $ phpcsFile ->findNext (
276
276
Tokens::$ emptyTokens ,
277
277
($ firstNonEmpty + 1 ),
@@ -280,7 +280,7 @@ public static function getParameters(File $phpcsFile, $stackPtr)
280
280
);
281
281
282
282
/*
283
- * BC: Checking the content of the colon token instead of the token type as in PHPCS < 3.6.0 (?)
283
+ * BC: Checking the content of the colon token instead of the token type as in PHPCS < 3.6.0
284
284
* the colon _may_ be tokenized as `T_STRING` or even `T_INLINE_ELSE`.
285
285
*/
286
286
if ($ tokens [$ secondNonEmpty ]['content ' ] === ': '
0 commit comments