We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php  | 
            ||
| 25 | final class NoneOf implements Rule  | 
            ||
| 26 | { | 
            ||
| 27 | /**  | 
            ||
| 28 | * @var Rule[]  | 
            ||
| 29 | */  | 
            ||
| 30 | private $rules = [];  | 
            ||
| 31 | |||
| 32 | /**  | 
            ||
| 33 | * Initializes the rule.  | 
            ||
| 34 | *  | 
            ||
| 35 | * @param Rule $rule  | 
            ||
| 36 | * @param Rule ...$rule2  | 
            ||
| 37 | */  | 
            ||
| 38 | 2 | public function __construct(Rule ...$rule)  | 
            |
| 42 | |||
| 43 | /**  | 
            ||
| 44 |      * {@inheritdoc} | 
            ||
| 45 | */  | 
            ||
| 46 | 30 | public function validate($input): Result  | 
            |
| 61 | }  | 
            ||
| 62 |