Completed
Pull Request — master (#181)
by De Cramer
03:12
created
src/eXpansion/Framework/Core/Storage/MapStorage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     public function getMap($uid)
69 69
     {
70 70
         /** @var Map $map */
71
-        $map = AssociativeArray::getFromKey($this->maps, $uid,  new Map());
71
+        $map = AssociativeArray::getFromKey($this->maps, $uid, new Map());
72 72
 
73 73
         if ($map->fileName && $map->lapRace === null) {
74 74
             $map = $this->connection->getMapInfo($map->fileName);
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      */
88 88
     public function getMapByIndex($index)
89 89
     {
90
-        $map = array_slice($this->maps, (int)$index, 1, false);
90
+        $map = array_slice($this->maps, (int) $index, 1, false);
91 91
 
92 92
         return end($map);
93 93
     }
Please login to merge, or discard this patch.