Completed
Push — master ( f2328d...2f9adf )
by SAEZ
02:20
created
src/EntityInformation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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};
Please login to merge, or discard this patch.
src/Entity/Player/Progression.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.