Passed
Push — master ( 1babc7...376e6b )
by Jhao
01:47
created
src/Language/Fingerprint/Concerns/Rotate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     public function rotate(Command $command)
25 25
     {
26 26
         /** @var Command|Rotatable $command */
27
-        if (! $command->getRotation()->equals(Angle::_0())) {
27
+        if (!$command->getRotation()->equals(Angle::_0())) {
28 28
             yield \sprintf('DIR %d', $command->getRotation()->getValue() + 1);
29 29
         }
30 30
     }
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function resetRotate(Command $command)
33 33
     {
34 34
         /** @var Command|Rotatable $command */
35
-        if (! $command->getRotation()->equals(Angle::_0())) {
35
+        if (!$command->getRotation()->equals(Angle::_0())) {
36 36
             yield 'DIR '.Fingerprint::DEFAULT_DIRECTION;
37 37
         }
38 38
     }
Please login to merge, or discard this patch.