| Total Complexity | 1 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 13 | final class ConstraintNotSatisfied extends RuntimeException implements MappingFailure |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Notifies the client that the mapping constraint was not satisfied. |
||
| 17 | * |
||
| 18 | * @param mixed $result |
||
| 19 | * @param Mapping $mapping |
||
| 20 | * @param Satisfiable $constraint |
||
| 21 | * @return MappingFailure |
||
| 22 | */ |
||
| 23 | public static function with( |
||
| 37 |