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