Skip to content

Commit bb3bbe0

Browse files
committed
chore: refactor to inline
Signed-off-by: Fawzi Abdulfattah <[email protected]>
1 parent 222a5f0 commit bb3bbe0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Statements/KillStatement.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,10 @@ public function build()
165165
$ret .= ' ID';
166166
}
167167

168-
$builtIdentifier = $this->identifier;
169168
if ($this->parenthesisUsed) {
170-
$ret .= ' (' . $builtIdentifier . ')';
169+
$ret .= ' (' . $this->identifier . ')';
171170
} elseif ($this->identifier !== null) {
172-
$ret .= ' ' . $builtIdentifier;
171+
$ret .= ' ' . $this->identifier;
173172
}
174173

175174
return $ret;

0 commit comments

Comments
 (0)