| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 20 | final class ReflectionFilesystem |
||
| 21 | { |
||
| 22 | private FilesystemInterface $filesystem; |
||
| 23 | |||
| 24 | public function __construct(FilesystemInterface $filesystem) |
||
| 25 | { |
||
| 26 | $this->filesystem = $filesystem; |
||
| 27 | } |
||
| 28 | |||
| 29 | public static function instance(FilesystemInterface $filesystem): self |
||
| 32 | } |
||
| 33 | |||
| 34 | public function isDefault(string $method_name): bool |
||
| 40 | } |
||
| 41 | } |
||
| 42 |