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 | 2 | * Validates if none of the given validators validate. |
|
| 19 | * |
||
| 20 | 2 | * @author Alexandre Gomes Gaigalas <[email protected]> |
|
| 21 | 2 | * @author Henrique Moody <[email protected]> |
|
| 22 | 2 | * |
|
| 23 | 2 | * @since 0.3.9 |
|
| 24 | 2 | */ |
|
| 25 | 1 | final class AnyOf implements Rule |
|
| 26 | { |
||
| 27 | /** |
||
| 28 | 1 | * @var Rule[] |
|
| 29 | */ |
||
| 30 | private $rules = []; |
||
| 60 |