@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | */ |
90 | 90 | protected function stackTraceCallToString(array $trace) |
91 | 91 | { |
92 | - if (! isset($trace['type'])) |
|
92 | + if (!isset($trace['type'])) |
|
93 | 93 | { |
94 | 94 | return 'function'; |
95 | 95 | } |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | { |
116 | 116 | $params = []; |
117 | 117 | |
118 | - if (! isset($trace['args'])) |
|
118 | + if (!isset($trace['args'])) |
|
119 | 119 | { |
120 | 120 | return $params; |
121 | 121 | } |
@@ -57,7 +57,7 @@ |
||
57 | 57 | return; |
58 | 58 | } |
59 | 59 | |
60 | - if ( ! $this->config->get('understand-laravel.log_types.exception_log.enabled')) |
|
60 | + if (!$this->config->get('understand-laravel.log_types.exception_log.enabled')) |
|
61 | 61 | { |
62 | 62 | return; |
63 | 63 | } |
@@ -19,7 +19,7 @@ |
||
19 | 19 | } |
20 | 20 | catch (\Exception $ex) |
21 | 21 | { |
22 | - if ( ! $this->silent) |
|
22 | + if (!$this->silent) |
|
23 | 23 | { |
24 | 24 | throw new \Understand\UnderstandLaravel5\Exceptions\HandlerException($ex->getMessage(), $ex->getCode(), $ex); |
25 | 25 | } |
@@ -226,7 +226,7 @@ |
||
226 | 226 | { |
227 | 227 | $url = $this->request->path(); |
228 | 228 | |
229 | - if ( ! starts_with($url, '/')) |
|
229 | + if (!starts_with($url, '/')) |
|
230 | 230 | { |
231 | 231 | $url = '/' . $url; |
232 | 232 | } |
@@ -128,7 +128,7 @@ |
||
128 | 128 | } |
129 | 129 | catch (\Exception $ex) |
130 | 130 | { |
131 | - if (! $this->silent) |
|
131 | + if (!$this->silent) |
|
132 | 132 | { |
133 | 133 | throw new $ex; |
134 | 134 | } |