1 | <?php |
||
8 | final class BooleanSpecification extends Specification |
||
9 | { |
||
10 | /** |
||
11 | * @var bool |
||
12 | */ |
||
13 | private $bool; |
||
14 | |||
15 | /** |
||
16 | * BooleanSpecification constructor. |
||
17 | * |
||
18 | * @param bool $bool |
||
19 | * @param null|string $name |
||
20 | */ |
||
21 | protected function __construct(bool $bool, ?string $name) |
||
26 | |||
27 | /** |
||
28 | * @inheritdoc |
||
29 | */ |
||
30 | public function validate(): void |
||
36 | } |
||
37 |