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