Passed
Pull Request — master (#6)
by
unknown
07:17
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
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      *
76 76
      * @return string|false|null
77 77
      */
78
-    public function getSigns(): string|false|null
78
+    public function getSigns(): string | false | null
79 79
     {
80 80
         return shell_exec(self::getExec($this->certmgrExec) . ' -list -store uMy');
81 81
     }
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      * @return bool|string
116 116
      * @throws Cli
117 117
      */
118
-    public function signData(string $data, string $thumbprint): bool|string
118
+    public function signData(string $data, string $thumbprint): bool | string
119 119
     {
120 120
         $from = tempnam('/tmp', 'cpsign');
121 121
         $to = tempnam('/tmp', 'cpsign');
Please login to merge, or discard this patch.