| Total Complexity | 3 | 
| Total Lines | 17 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 10 | final class ResetPhp extends BaseProcessor | ||
| 11 | { | ||
| 12 | use Publishable; | ||
| 13 | |||
| 14 | protected function publish(): void | ||
| 15 |     { | ||
| 16 |         foreach (File::files($this->sourcePath()) as $file) { | ||
| 17 | $this->resetFile($file); | ||
| 18 | } | ||
| 19 | } | ||
| 20 | |||
| 21 | protected function excluded(array $array, string $filename): array | ||
| 27 | } | ||
| 28 | } | ||
| 29 |