Skip to content

Commit 0838ff3

Browse files
Apply fixes from StyleCI (#12)
[ci skip] [skip ci]
1 parent b33b248 commit 0838ff3

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Block.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ protected function replaceTabs($code)
216216
{
217217
$multiplier = Torchlight::config('spaces_per_tab', 4);
218218

219-
return str_replace("\t", str_repeat(" ", $multiplier), $code);
219+
return str_replace("\t", str_repeat(' ', $multiplier), $code);
220220
}
221221

222222
/**

tests/BlockTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ public function it_right_trims()
8282
$this->assertEquals($block->code, 'echo 1;');
8383
}
8484

85-
8685
/** @test */
8786
public function you_can_set_your_own_id()
8887
{

0 commit comments

Comments
 (0)