@@ -9,6 +9,9 @@ |
||
9 | 9 | abstract class RuntimeException extends BaseRuntimeException implements HeleException |
10 | 10 | { |
11 | 11 | |
12 | + /** |
|
13 | + * @param string $message |
|
14 | + */ |
|
12 | 15 | public function __construct($message, Exception $previous = null) |
13 | 16 | { |
14 | 17 | parent::__construct($message, 0, $previous); |
@@ -7,7 +7,7 @@ |
||
7 | 7 | |
8 | 8 | public function __construct() |
9 | 9 | { |
10 | - parent::__construct(function ($data) { |
|
10 | + parent::__construct(function($data) { |
|
11 | 11 | return $data; |
12 | 12 | }); |
13 | 13 | } |