@@ -24,7 +24,7 @@ discard block |
||
| 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 |
||
| 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 | } |