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