We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 0 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | final class MinException extends ValidationException |
||
| 23 | { |
||
| 24 | public const INCLUSIVE = 'inclusive'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public static $defaultTemplates = [ |
||
| 30 | self::MODE_DEFAULT => [ |
||
| 31 | self::STANDARD => '{{name}} must be greater than or equal to {{compareTo}}', |
||
| 32 | ], |
||
| 33 | self::MODE_NEGATIVE => [ |
||
| 34 | self::STANDARD => '{{name}} must not be greater than or equal to {{compareTo}}', |
||
| 35 | ], |
||
| 38 |