Skip to content

Commit 602d7a3

Browse files
authored
Merge pull request #243 from PHPCSStandards/passedparameters/update-after-upstream-merge
PassedParameters: account for upstream support of named parameters
2 parents 3f1a79a + e13f191 commit 602d7a3

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

PHPCSUtils/Utils/PassedParameters.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public static function hasParameters(File $phpcsFile, $stackPtr)
170170
* 'name_end' => int, // The stack pointer to the last token in the parameter name.
171171
* // This will normally be the colon, but may be different in
172172
* // PHPCS versions prior to the version adding support for
173-
* // named parameters (PHPCS x.x.x).
173+
* // named parameters (PHPCS 3.6.0).
174174
* 'name' => string, // The parameter name as a string (without the colon).
175175
* 'start' => int, // The stack pointer to the first token in the parameter value.
176176
* 'end' => int, // The stack pointer to the last token in the parameter value.
@@ -262,7 +262,7 @@ public static function getParameters(File $phpcsFile, $stackPtr)
262262
$firstNonEmpty = $phpcsFile->findNext(Tokens::$emptyTokens, $paramStart, ($paramEnd + 1), true);
263263
if ($firstNonEmpty !== $paramEnd) {
264264
/*
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
266266
* parameter name + the colon would in most cases be tokenized as one token: T_GOTO_LABEL.
267267
*/
268268
if ($tokens[$firstNonEmpty]['code'] === \T_GOTO_LABEL) {
@@ -271,7 +271,7 @@ public static function getParameters(File $phpcsFile, $stackPtr)
271271
$parameters[$cnt]['name'] = \substr($tokens[$firstNonEmpty]['content'], 0, -1);
272272
$paramStart = ($firstNonEmpty + 1);
273273
} 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.
275275
$secondNonEmpty = $phpcsFile->findNext(
276276
Tokens::$emptyTokens,
277277
($firstNonEmpty + 1),
@@ -280,7 +280,7 @@ public static function getParameters(File $phpcsFile, $stackPtr)
280280
);
281281

282282
/*
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
284284
* the colon _may_ be tokenized as `T_STRING` or even `T_INLINE_ELSE`.
285285
*/
286286
if ($tokens[$secondNonEmpty]['content'] === ':'

Tests/Utils/PassedParameters/GetParameterFromStackTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
namespace PHPCSUtils\Tests\Utils\PassedParameters;
1212

13+
use PHPCSUtils\BackCompat\Helper;
1314
use PHPCSUtils\TestUtils\UtilityMethodTestCase;
1415
use PHPCSUtils\Utils\PassedParameters;
1516

@@ -236,7 +237,7 @@ public function dataGetParameterFromStack()
236237
* Work around to account for the different token positions due to the old tokenization
237238
* to T_GOTO_LABEL which joins two tokens into one (incorrectly).
238239
*/
239-
$namedParamsInPhpcs = false;
240+
$namedParamsInPhpcs = \version_compare(Helper::getVersion(), '3.6.0', '>=');
240241

241242
return [
242243
'all-params-all-positional' => [

Tests/Utils/PassedParameters/GetParametersNamedTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
namespace PHPCSUtils\Tests\Utils\PassedParameters;
1212

13+
use PHPCSUtils\BackCompat\Helper;
1314
use PHPCSUtils\TestUtils\UtilityMethodTestCase;
1415
use PHPCSUtils\Utils\PassedParameters;
1516

@@ -89,7 +90,7 @@ public function dataGetParameters()
8990
* the `match` control structure is not supported in PHPCS yet.
9091
*/
9192
$php8Names = parent::usesPhp8NameTokens();
92-
$namedParamsInPhpcs = false;
93+
$namedParamsInPhpcs = \version_compare(Helper::getVersion(), '3.6.0', '>=');
9394
$matchIsKeyword = \version_compare(\PHP_VERSION_ID, '80000', '>=');
9495

9596
return [

0 commit comments

Comments
 (0)