We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | * Validates if none of the given validators validate. |
||
| 19 | * |
||
| 20 | * @author Alexandre Gomes Gaigalas <[email protected]> |
||
| 21 | * @author Henrique Moody <[email protected]> |
||
| 22 | * |
||
| 23 | * @since 0.3.9 |
||
| 24 | */ |
||
| 25 | final class AnyOf implements Rule |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @var Rule[] |
||
| 29 | */ |
||
| 30 | private $rules = []; |
||
| 60 |