Passed
Push — master ( ab9dd5...179053 )
by Petr
05:44
created
src/Command/TerraformCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->setName('create');
22 22
         $this->setDescription('Create new map');
23
-        $this->setHelp('This command allows you to create game map.');;
23
+        $this->setHelp('This command allows you to create game map.'); ;
24 24
     }
25 25
 
26 26
     /** {@inheritDoc} */
Please login to merge, or discard this patch.
src/Entity/Map.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 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);
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         $firstLocation = parent::first();
36 36
 
37 37
         if (!$firstLocation) {
38
-        	return null;
38
+            return null;
39 39
         }
40 40
 
41 41
         return $firstLocation;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     }
31 31
 
32 32
     /** {@inheritDoc} */
33
-    public function first(): ?Location
33
+    public function first(): ? Location
34 34
     {
35 35
         $firstLocation = parent::first();
36 36
 
Please login to merge, or discard this patch.