@@ -12,7 +12,7 @@ |
||
| 12 | 12 | |
| 13 | 13 | public function __get($name) |
| 14 | 14 | { |
| 15 | - if (! isset($this->informations->{$name})) { |
|
| 15 | + if (!isset($this->informations->{$name})) { |
|
| 16 | 16 | return null; |
| 17 | 17 | } |
| 18 | 18 | $requestedInformation = $this->informations->{$name}; |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | protected function extratRaid($key, $value) |
| 26 | 26 | { |
| 27 | 27 | $raids = $this->raids(); |
| 28 | - $raid = array_filter($raids, function ($raid) use ($key, $value) { |
|
| 28 | + $raid = array_filter($raids, function($raid) use ($key, $value) { |
|
| 29 | 29 | return $raid->{$key} === $value; |
| 30 | 30 | }); |
| 31 | 31 | |