Skip to content

Commit d8924e3

Browse files
committed
Squiz/FunctionDeclarationArgumentSpacing: minor simplification
No need to recreate the type hint when it's already available in the return value of the `getMethodParameters()` method.
1 parent 0fec9ee commit d8924e3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Standards/Squiz/Sniffs/Functions/FunctionDeclarationArgumentSpacingSniff.php

+1-4
Original file line numberDiff line numberDiff line change
@@ -396,10 +396,7 @@ public function processBracket($phpcsFile, $openBracket)
396396
}
397397
}//end if
398398
} else {
399-
$hint = $phpcsFile->getTokensAsString($param['type_hint_token'], (($param['type_hint_end_token'] - $param['type_hint_token']) + 1));
400-
if ($param['nullable_type'] === true) {
401-
$hint = '?'.$hint;
402-
}
399+
$hint = $param['type_hint'];
403400

404401
if ($tokens[($commaToken + 1)]['code'] !== T_WHITESPACE) {
405402
$error = 'Expected 1 space between comma and type hint "%s"; 0 found';

0 commit comments

Comments
 (0)