Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | public function __construct(RuleInterface $rule, array $expectationFailedExceptions, $code = 0, Exception $previous = null) |
||
43 | { |
||
44 | parent::__construct($rule::getRuleName() . ': KO', $code, $previous); |
||
45 | |||
46 | $this->rule = $rule; |
||
47 | $this->expectationFailedExceptions = $expectationFailedExceptions; |
||
48 | } |
||
49 | |||
65 | } |