| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function __construct($operation, $violations, $code = 0, Throwable $previous = null) |
||
| 25 | { |
||
| 26 | $msg = "There was an error building the operation '$operation' : "; |
||
| 27 | foreach ($violations as $violation) { |
||
| 28 | $msg .= "\n - " . implode(', ', $violation->getParameters()) . " : " . $violation->getMessage(); |
||
| 29 | } |
||
| 30 | $msg .= "\n"; |
||
| 31 | |||
| 32 | parent::__construct($msg, $code, $previous); |
||
| 33 | } |
||
| 34 | } |