| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| 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 | 18 | protected function publish(): void |
|
| 16 | { |
||
| 17 | 18 | $this->publishFile( |
|
| 18 | 18 | new SplFileInfo($this->sourcePath()) |
|
| 19 | ); |
||
| 20 | 18 | } |
|
| 21 | |||
| 22 | 18 | protected function excluded(array $array, string $key): array |
|
| 29 | } |
||
| 30 | } |
||
| 31 |