Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Not implements FqcnSpecification |
||
12 | { |
||
13 | /** |
||
14 | * @var FqcnSpecification |
||
15 | */ |
||
16 | protected $specification; |
||
17 | |||
18 | public function __construct(FqcnSpecification $specification) |
||
19 | { |
||
20 | $this->specification = $specification; |
||
21 | } |
||
22 | |||
23 | public function isSatisfiedBy(string $fqcn): bool |
||
26 | } |
||
27 | } |
||
28 |