Function process
has a Cognitive Complexity of 46 (exceeds 15 allowed). Consider refactoring.
public function process(File $phpcsFile, $stackPtr): void
{
$tokens = $phpcsFile->getTokens();
$current = $tokens[$stackPtr];
Function process
has a Cognitive Complexity of 36 (exceeds 15 allowed). Consider refactoring.
public function process(File $phpcsFile, $stackPtr): void
{
$docCommentTags = [
'@param' => 1,
'@return' => 1,
Function processTokenWithinScope
has a Cognitive Complexity of 27 (exceeds 15 allowed). Consider refactoring.
protected function processTokenWithinScope(File $phpcsFile, $stackPtr, $currScope): void
{
$find = [
T_COMMENT,
T_DOC_COMMENT_CLOSE_TAG,
Function process
has a Cognitive Complexity of 25 (exceeds 15 allowed). Consider refactoring.
public function process(File $phpcsFile, $stackPtr): void
{
$varRegExp = '/\$[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/';
$tokens = $phpcsFile->getTokens();
Method checkShorthandPossible
has 7 arguments (exceeds 4 allowed). Consider refactoring.
private function checkShorthandPossible(File $phpcsFile, array $useStatements, string $className, string $namespace, int $startPtr, int $endPtr, bool $isDocBlock = false): void