| Total Complexity | 4 | 
| Total Lines | 19 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 9 | class Not implements Specification | ||
| 10 | { | ||
| 11 | /** @var Specification[] */ | ||
| 12 | private array $specifications; | ||
| 13 | |||
| 14 | public function __construct(Specification ...$specifications) | ||
| 15 |     { | ||
| 16 | $this->specifications = $specifications; | ||
| 17 | } | ||
| 18 | |||
| 19 | public function isSatisfiedBy(ParsedAttribute $attribute): bool | ||
| 28 | } | ||
| 29 | } | ||
| 30 |