1 | <?php |
||
7 | class CompositeSpecification extends LeafSpecification |
||
8 | { |
||
9 | private $specifications = []; |
||
10 | |||
11 | 3 | public function __construct(Specification ...$specifications) |
|
15 | |||
16 | 3 | public function isSatisfiedBy(Candidate $candidate): bool |
|
26 | |||
27 | 1 | public function remainderUnsatisfiedBy(Candidate $candidate): ?Specification |
|
42 | } |
||
43 |