Skip to content

Commit ae6d49e

Browse files
Apply fixes from StyleCI (#8)
[ci skip] [skip ci]
1 parent 8146cce commit ae6d49e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ protected function setBlocksFromCache(Collection $blocks)
218218
protected function defaultResponse(Block $block)
219219
{
220220
$lines = array_map(function ($line) {
221-
return "<div class='line'>" . htmlentities($line) . "</div>";
221+
return "<div class='line'>" . htmlentities($line) . '</div>';
222222
}, explode("\n", $block->code));
223223

224224
$highlighted = implode('', $lines);

tests/MiddlewareAndComponentTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ public function code_contents_can_be_a_file_2()
169169
});
170170
}
171171

172-
173172
/** @test */
174173
public function two_components_work()
175174
{

0 commit comments

Comments
 (0)