Passed
Push — master ( a3fda0...7c0590 )
by Tim
14:58 queued 13:28
created
src/Binding/SOAP.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      *
40 40
      * @throws \Exception
41 41
      */
42
-    public function getOutputToSend(AbstractMessage $message): string|false
42
+    public function getOutputToSend(AbstractMessage $message): string | false
43 43
     {
44 44
         $header = new Header();
45 45
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     /**
115 115
      * @return string|false
116 116
      */
117
-    protected function getInputStream(): string|false
117
+    protected function getInputStream(): string | false
118 118
     {
119 119
         return file_get_contents('php://input');
120 120
     }
Please login to merge, or discard this patch.
src/Certificate/KeyLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
      * Loads the keys given, optionally excluding keys when a usage is given and they
91 91
      * are not configured to be used with the usage given
92 92
      */
93
-    public function loadKeys(array|Traversable $configuredKeys, ?string $usage = null): void
93
+    public function loadKeys(array | Traversable $configuredKeys, ?string $usage = null): void
94 94
     {
95 95
         foreach ($configuredKeys as $keyData) {
96 96
             if (isset($keyData['X509Certificate'])) {
Please login to merge, or discard this patch.
src/Compat/MockContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
      * @param array $data
61 61
      */
62 62
     public function getPOSTRedirectURL(
63
-        /** @scrutinizer ignore-unused */?string $url = null,
63
+        /** @scrutinizer ignore-unused */ ?string $url = null,
64 64
         /** @scrutinizer ignore-unused */array $data = [],
65 65
     ): string {
66 66
         return strval($url);
Please login to merge, or discard this patch.