Skip to content

Commit a1a0766

Browse files
Apply fixes from StyleCI (#11)
[ci skip] [skip ci]
1 parent 9b1eb6b commit a1a0766

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

src/Contracts/PostProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
interface PostProcessor
1111
{
1212
public function process(Block $block);
13-
}
13+
}

src/Manager.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
namespace Torchlight;
77

8-
use Exception;
98
use Illuminate\Contracts\Cache\Repository;
109
use Illuminate\Support\Arr;
1110
use Illuminate\Support\Facades\Cache;

tests/PostProcessorTest.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
use Torchlight\Block;
99
use Torchlight\Contracts\PostProcessor;
1010
use Torchlight\Exceptions\ConfigurationException;
11-
use Torchlight\Exceptions\RequestException;
1211
use Torchlight\Torchlight;
1312

1413
class PostProcessorTest extends BaseTest
@@ -80,14 +79,12 @@ public function must_implement_interface()
8079
Block::class
8180
]);
8281
}
83-
8482
}
8583

8684
class NullPostProcessor implements PostProcessor
8785
{
8886
public function process(Block $block)
8987
{
90-
9188
}
9289
}
9390

@@ -105,4 +102,4 @@ public function process(Block $block)
105102
{
106103
$block->highlighted = str_replace('goodbye', 'goodbye cruel', $block->highlighted);
107104
}
108-
}
105+
}

0 commit comments

Comments
 (0)