Total Complexity | 8 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class Psr4ClassFinder implements \IteratorAggregate |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $directory; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $prefix; |
||
21 | |||
22 | public function __construct(string $directory, string $prefix) |
||
31 | } |
||
32 | |||
33 | /** @return \Generator<string> */ |
||
34 | public function getIterator(): \Generator |
||
52 |