Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
17 | public static function that($value, $defaultMessage = null, ?string $defaultPropertyPath = null): Beberlei\AssertionChain |
||
18 | { |
||
19 | $assertionChain = new AssertionChain($value, $defaultMessage, $defaultPropertyPath); |
||
20 | |||
21 | return $assertionChain->setAssertionClassName(static::$assertionClass); |
||
22 | } |
||
24 |