Passed
Push — master ( dd634a...4d5ddd )
by Petr
02:10
created
src/LocationGenerator/BiomQualifier.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,12 +21,12 @@
 block discarded – undo
21 21
         /** @var Location $location */
22 22
         foreach ($map->toArray() as $location) {
23 23
             if (!$location->getBiom()->equals($firstBiom)) {
24
-            	$locationsAreSame = false;
24
+                $locationsAreSame = false;
25 25
             }
26 26
         }
27 27
 
28 28
         if ($map->count() == 8 && $locationsAreSame) {
29
-        	return $firstBiom;
29
+            return $firstBiom;
30 30
         }
31 31
 
32 32
         throw new UnimplementedException();
Please login to merge, or discard this patch.
src/Entity/Map.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     public function add($element): bool
24 24
     {
25 25
         if (!$element instanceof Location) {
26
-        	throw new InvalidTypeException();
26
+            throw new InvalidTypeException();
27 27
         }
28 28
 
29 29
         return parent::add($element);
Please login to merge, or discard this patch.