Total Complexity | 9 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class ClassFinder implements FinderInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var FinderInterface |
||
13 | */ |
||
14 | private $fileFinder; |
||
15 | /** |
||
16 | * @var callable|null |
||
17 | */ |
||
18 | private $classExtractor; |
||
19 | |||
20 | 1 | public function __construct(FinderInterface $fileFinder = null, callable $classExtractor = null) |
|
24 | 1 | } |
|
25 | |||
26 | 1 | public function addPath(string $path): FinderInterface |
|
31 | } |
||
32 | |||
33 | 1 | public function getIterator(): \Traversable |
|
49 |