Passed
Pull Request — master (#7)
by
unknown
01:24
created
Exception/Cli.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      *
19 19
      * @return array|string|false
20 20
      */
21
-    public function getMessageSafe(): array|string|false
21
+    public function getMessageSafe(): array | string | false
22 22
     {
23 23
         $message = $this->getMessage();
24 24
         return mb_convert_encoding($message, 'UTF-8', 'UTF-8');
Please login to merge, or discard this patch.
CryptoProCli.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      *
59 59
      * @return string|false|null
60 60
      */
61
-    public function getSigns(): string|false|null
61
+    public function getSigns(): string | false | null
62 62
     {
63 63
         return shell_exec(self::getExec($this->certmgrExec) . ' -list -store uMy');
64 64
     }
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      * @return bool|string
102 102
      * @throws Cli
103 103
      */
104
-    public function signData(string $data, string $thumbprint, string $pin = ''): bool|string
104
+    public function signData(string $data, string $thumbprint, string $pin = ''): bool | string
105 105
     {
106 106
         $from = tempnam('/tmp', 'cpsign');
107 107
         $to = tempnam('/tmp', 'cpsign');
Please login to merge, or discard this patch.