| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | abstract class AbstractLoggableExtractor implements LoggableExtractorInterface |
||
| 6 | { |
||
| 7 | protected ?array $loggableClasses = null; |
||
| 8 | |||
| 9 | public function __construct(private readonly array $loggablePaths) |
||
| 10 | { |
||
| 11 | } |
||
| 12 | |||
| 13 | abstract protected function extractPath(string $path); |
||
| 14 | |||
| 15 | public function getLoggableResources(): array |
||
| 27 | } |
||
| 28 | } |
||
| 29 |