| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class Event extends BaseEvent |
||
| 17 | { |
||
| 18 | private $exception; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Set exception. |
||
| 22 | */ |
||
| 23 | 1 | public function setException(\Exception $exception) |
|
| 24 | { |
||
| 25 | 1 | $this->exception = $exception; |
|
| 26 | 1 | } |
|
| 27 | |||
| 28 | /** |
||
| 29 | * Get exception. |
||
| 30 | * |
||
| 31 | * @return \Exception |
||
| 32 | */ |
||
| 33 | 1 | public function getException() |
|
| 36 | } |
||
| 37 | } |
||
| 38 |