Passed
Push — master ( ea5a13...f70473 )
by Pierre
01:45
created
src/Components/System.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
                 $gear->getTorque(),
113 113
                 $gear->getSpeed(),
114 114
                 $gear->getForward() ? static::_TRUE : static::_FALSE,
115
-                $gear->getComposed() ?  static::_TRUE : static::_FALSE,
115
+                $gear->getComposed() ? static::_TRUE : static::_FALSE,
116 116
             );
117 117
         }
118 118
         unset($gears);
Please login to merge, or discard this patch.
src/Entity/Gear.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     protected function init(): void
47 47
     {
48 48
         $this->id = '';
49
-        $this->torque = $this->speed = $this->teeth =  0;
49
+        $this->torque = $this->speed = $this->teeth = 0;
50 50
         $this->forward = true;
51 51
         $this->composed = false;
52 52
     }
Please login to merge, or discard this patch.