Skip to content

Commit c35edf0

Browse files
committed
Fix for phpstan
1 parent 86da9b7 commit c35edf0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Compiler.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -232,10 +232,7 @@ public function convert(): string
232232
}
233233

234234
$this->rawBlocks[] = $this->createVariableBlock();
235-
236-
if (count($this->rawBlocks)) {
237-
$html = implode("\n", $this->rawBlocks) . "\n" . $html;
238-
}
235+
$html = implode("\n", $this->rawBlocks) . "\n" . $html;
239236

240237
$html = $this->replacePlaceholders($html);
241238
$html = $this->replaceScopedPlaceholders($html);

0 commit comments

Comments
 (0)