Remove redundant checks
This commit is contained in:
parent
cf75f92cd5
commit
0ed7a34948
@ -82,10 +82,7 @@ class PHP {
|
||||
[$type, $rawChar, $currentLine] = $token;
|
||||
$char = tabs_to_spaces($rawChar);
|
||||
|
||||
if ($currentLine !== $this->lineNum)
|
||||
{
|
||||
$this->lineNum = $currentLine;
|
||||
}
|
||||
|
||||
$current = [
|
||||
'type' => $type,
|
||||
@ -100,11 +97,6 @@ class PHP {
|
||||
$this->tokens[$this->lineNum][] = $current;
|
||||
$this->lineNum++;
|
||||
|
||||
if ( ! array_key_exists($this->lineNum, $this->tokens))
|
||||
{
|
||||
$this->tokens[$this->lineNum] = [];
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
@ -124,11 +116,6 @@ class PHP {
|
||||
{
|
||||
$nextLine++;
|
||||
|
||||
if ( ! array_key_exists($nextLine, $this->tokens))
|
||||
{
|
||||
$tokens[$nextLine] = [];
|
||||
}
|
||||
|
||||
if ( ! empty($char))
|
||||
{
|
||||
$this->processStringToken($char, $nextLine);
|
||||
|
Loading…
Reference in New Issue
Block a user