Documentation

ClassKeywordRemoveFixer extends AbstractFixer
in package
implements DeprecatedFixerInterface

FinalYes
Tags
deprecated
author

Sullivan Senechal soullivaneuh@gmail.com

Table of Contents

Interfaces

DeprecatedFixerInterface

Properties

$imports  : array<string|int, string>

Methods

getDefinition()  : FixerDefinitionInterface
Returns the definition of the fixer.
getPriority()  : int
Returns the priority of the fixer.
getSuccessorsNames()  : array<int, string>
Returns names of fixers to use instead, if any.
isCandidate()  : bool
Check if the fixer is a candidate for given Tokens collection.
applyFix()  : void
makeClassFQN()  : string
replaceClassKeyword()  : void
replaceClassKeywordsSection()  : void
storeImports()  : void

Properties

Methods

getPriority()

Returns the priority of the fixer.

public getPriority() : int

Must run before NoUnusedImportsFixer.

Return values
int

getSuccessorsNames()

Returns names of fixers to use instead, if any.

public getSuccessorsNames() : array<int, string>
Return values
array<int, string>

isCandidate()

Check if the fixer is a candidate for given Tokens collection.

public isCandidate(Tokens $tokens) : bool

Fixer is a candidate when the collection contains tokens that may be fixed during fixer work. This could be considered as some kind of bloom filter. When this method returns true then to the Tokens collection may or may not need a fixing, but when this method returns false then the Tokens collection need no fixing for sure.

Parameters
$tokens : Tokens
Return values
bool

makeClassFQN()

private makeClassFQN(string $namespacePrefix, false|string $classImport, string $classString) : string
Parameters
$namespacePrefix : string
$classImport : false|string
$classString : string
Return values
string

replaceClassKeyword()

private replaceClassKeyword(Tokens $tokens, string $namespacePrefix, int $classIndex) : void
Parameters
$tokens : Tokens
$namespacePrefix : string
$classIndex : int

replaceClassKeywordsSection()

private replaceClassKeywordsSection(Tokens $tokens, string $namespace, int $startIndex, int $endIndex) : void
Parameters
$tokens : Tokens
$namespace : string
$startIndex : int
$endIndex : int

        
On this page

Search results