Completed
Push — master ( 9217d6...c5e2a6 )
by thomas
9s
created
src/PinEntry.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     public function getInfo(string $type): string
28 28
     {
29
-        $this->process->send(Command::GETINFO . " {$type}\n");
29
+        $this->process->send(Command::GETINFO." {$type}\n");
30 30
         $msg = $this->process->waitFor("D");
31 31
         return $msg;
32 32
     }
@@ -39,11 +39,11 @@  discard block
 block discarded – undo
39 39
         }
40 40
 
41 41
         foreach ($request->getOptions() as $option => $value) {
42
-            $this->process->send(Command::OPTION . " {$option} {$value}\n");
42
+            $this->process->send(Command::OPTION." {$option} {$value}\n");
43 43
             $this->process->waitFor("OK");
44 44
         }
45 45
 
46
-        $this->process->send(Command::GETPIN . "\n");
46
+        $this->process->send(Command::GETPIN."\n");
47 47
         $msg = $this->process->waitFor("D");
48 48
         return $msg;
49 49
     }
Please login to merge, or discard this patch.