We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 22 | final class Templates |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @Required |
||
| 26 | * |
||
| 27 | * @var array<Respect\Validation\Message\Template> |
||
| 28 | */ |
||
| 29 | public $regular; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @Required |
||
| 33 | * |
||
| 34 | * @var array<Respect\Validation\Message\Template> |
||
| 35 | */ |
||
| 36 | public $inverted; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var bool |
||
| 40 | */ |
||
| 41 | public $isIgnorable = false; |
||
| 42 | |||
| 43 | public static function getDefault(): self |
||
| 53 | } |
||
| 54 |