| @@ -24,7 +24,7 @@ | ||
| 24 | 24 | */ | 
| 25 | 25 | public static function get($array, $key, $default = null) | 
| 26 | 26 |      { | 
| 27 | -        if (! static::accessible($array)) { | |
| 27 | +        if (!static::accessible($array)) { | |
| 28 | 28 | return value($default); | 
| 29 | 29 | } | 
| 30 | 30 | |
| @@ -60,7 +60,7 @@ discard block | ||
| 60 | 60 | */ | 
| 61 | 61 | public function notify(Throwable $throwable, FoundationRequest $request = null, array $additionalParams = []) : array | 
| 62 | 62 |      { | 
| 63 | -        if (! $this->shouldReport($throwable)) { | |
| 63 | +        if (!$this->shouldReport($throwable)) { | |
| 64 | 64 | return []; | 
| 65 | 65 | } | 
| 66 | 66 | |
| @@ -167,6 +167,6 @@ discard block | ||
| 167 | 167 | */ | 
| 168 | 168 | private function shouldReport(Throwable $throwable) : bool | 
| 169 | 169 |      { | 
| 170 | - return ! $this->excludedException($throwable) && ! is_null($this->config['api_key']); | |
| 170 | + return !$this->excludedException($throwable) && !is_null($this->config['api_key']); | |
| 171 | 171 | } | 
| 172 | 172 | } |