| 1 | <?php |
||
| 22 | final class ExcludingSpecificationIterator extends \FilterIterator implements SpecificationIterator |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var SpecificationIterator |
||
| 26 | */ |
||
| 27 | private $specificationIterator; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var array |
||
| 31 | */ |
||
| 32 | private $skippedPaths; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param SpecificationIterator $specificationIterator |
||
| 36 | * @param array $skippedPaths |
||
| 37 | */ |
||
| 38 | public function __construct(SpecificationIterator $specificationIterator, array $skippedPaths) |
||
| 45 | |||
| 46 | /** |
||
| 47 | * {@inheritdoc} |
||
| 48 | */ |
||
| 49 | public function accept(): bool |
||
| 57 | |||
| 58 | /** |
||
| 59 | * {@inheritdoc} |
||
| 60 | */ |
||
| 61 | public function getSuite(): Suite |
||
| 65 | } |
||
| 66 |