Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
13 | class AssertionChain extends Beberlei\AssertionChain |
||
14 | { |
||
15 | /** |
||
16 | * Perform a negative assertion. |
||
17 | * |
||
18 | * @var bool |
||
19 | */ |
||
20 | private $not = false; |
||
21 | |||
22 | public function __call($methodName, $args): Beberlei\AssertionChain |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Switch chain into negative mode. |
||
33 | */ |
||
34 | public function not(): self |
||
40 |