1 | <?php |
||
23 | final class ExcludingSpecificationLocator implements SpecificationLocator |
||
24 | { |
||
25 | /** |
||
26 | * @var SpecificationLocator |
||
27 | */ |
||
28 | private $specificationLocator; |
||
29 | |||
30 | /** |
||
31 | * @var array |
||
32 | */ |
||
33 | private $skippedPaths; |
||
34 | |||
35 | /** |
||
36 | * @param SpecificationLocator $filesystemFeatureLocator |
||
37 | * @param array $skippedPaths |
||
38 | */ |
||
39 | public function __construct(SpecificationLocator $filesystemFeatureLocator, array $skippedPaths) |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | public function getLocatorExamples(): array |
||
52 | |||
53 | /** |
||
54 | * {@inheritdoc} |
||
55 | */ |
||
56 | public function locateSpecifications(Suite $suite, $locator): SpecificationIterator |
||
63 | } |
||
64 |