| 1 | <?php |
||
| 7 | class DefaultExceptionTransformer implements ExceptionTransformer |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var bool |
||
| 11 | */ |
||
| 12 | private $debug; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param bool $debug |
||
| 16 | */ |
||
| 17 | 4 | public function __construct($debug = false) |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @param \Exception $exception |
||
| 24 | * @return array |
||
| 25 | */ |
||
| 26 | 4 | public function transformException(\Exception $exception) |
|
| 40 | } |
||
| 41 |