Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class PublishJson extends BaseProcessor |
||
11 | { |
||
12 | use Publishable; |
||
13 | |||
14 | protected $extension = 'json'; |
||
15 | 18 | ||
16 | protected function publish(): void |
||
17 | 18 | { |
|
18 | 18 | $this->publishFile( |
|
19 | new SplFileInfo($this->sourcePath()) |
||
20 | 18 | ); |
|
21 | } |
||
22 | 18 | ||
23 | protected function excluded(array $array, string $filename): array |
||
31 | } |
||
32 | } |
||
33 |