SwitchContinueToBreakFixer
extends AbstractFixer
in package
FinalYes
Table of Contents
Properties
- $switchLevels : array<int, int>
Methods
- getDefinition() : FixerDefinitionInterface
- getPriority() : int
- {@inheritdoc}
- isCandidate() : bool
- applyFix() : void
- doFix() : int
- fixContinueWhenActsAsBreak() : int
- fixInLoop() : int
- fixInSwitch() : int
- replaceContinueWithBreakToken() : void
Properties
$switchLevels
private
array<int, int>
$switchLevels
= []
Methods
getDefinition()
public
getDefinition() : FixerDefinitionInterface
Return values
FixerDefinitionInterfacegetPriority()
{@inheritdoc}
public
getPriority() : int
Must run after NoAlternativeSyntaxFixer.
Return values
intisCandidate()
public
isCandidate(Tokens $tokens) : bool
Parameters
- $tokens : Tokens
Return values
boolapplyFix()
protected
applyFix(SplFileInfo $file, Tokens $tokens) : void
Parameters
- $file : SplFileInfo
- $tokens : Tokens
doFix()
private
doFix(Tokens $tokens, int $index, int $depth, bool $isInSwitch) : int
Parameters
- $tokens : Tokens
- $index : int
- $depth : int
-
= 0
- $isInSwitch : bool
Return values
intfixContinueWhenActsAsBreak()
private
fixContinueWhenActsAsBreak(Tokens $tokens, int $continueIndex, bool $isInSwitch, int $depth) : int
Parameters
- $tokens : Tokens
- $continueIndex : int
- $isInSwitch : bool
- $depth : int
Return values
intfixInLoop()
private
fixInLoop(Tokens $tokens, int $openIndex, int $depth) : int
Parameters
- $tokens : Tokens
- $openIndex : int
- $depth : int
Return values
intfixInSwitch()
private
fixInSwitch(Tokens $tokens, int $switchIndex, int $depth) : int
Parameters
- $tokens : Tokens
- $switchIndex : int
- $depth : int
Return values
intreplaceContinueWithBreakToken()
private
replaceContinueWithBreakToken(Tokens $tokens, int $index) : void
Parameters
- $tokens : Tokens
- $index : int