| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 34 | public function getAllClassNames() |
||
| 35 | { |
||
| 36 | if (!$this->locator instanceof AdvancedFileLocatorInterface) { |
||
| 37 | throw new \RuntimeException('Locator "%s" must be an instance of "AdvancedFileLocatorInterface".'); |
||
| 38 | } |
||
| 39 | |||
| 40 | return $this->locator->findAllClasses($this->getExtension()); |
||
| 41 | } |
||
| 42 | |||
| 60 |