Total Complexity | 3 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class PatchTestOperationFailedException extends Exception |
||
10 | { |
||
11 | /** @var Test */ |
||
12 | private $operation; |
||
13 | /** @var mixed */ |
||
14 | private $actualValue; |
||
15 | |||
16 | /** |
||
17 | * @param Test $operation |
||
18 | * @param mixed $actualValue |
||
19 | * @param int $code |
||
20 | * @param Throwable|null $previous |
||
21 | */ |
||
22 | public function __construct( |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @return Test |
||
37 | */ |
||
38 | public function getOperation() |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * @return mixed |
||
45 | */ |
||
46 | public function getActualValue() |
||
51 |