Passed
Push — master ( 902f4d...95262c )
by Tim
02:06
created
src/Utils/XPath.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      *
45 45
      * @throws RuntimeException If no DOM document is available.
46 46
      */
47
-    public static function findElement(DOMNode $ref, string $name): DOMElement|false
47
+    public static function findElement(DOMNode $ref, string $name): DOMElement | false
48 48
     {
49 49
         $doc = $ref instanceof DOMDocument ? $ref : $ref->ownerDocument;
50 50
         if ($doc === null) {
Please login to merge, or discard this patch.
src/Utils/Certificate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      *
55 55
      * @return string
56 56
      */
57
-    public static function parseIssuer(array|string $issuer): string
57
+    public static function parseIssuer(array | string $issuer): string
58 58
     {
59 59
         if (is_array($issuer)) {
60 60
             $parts = [];
Please login to merge, or discard this patch.
src/XML/xenc/AbstractEncryptionMethod.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -163,8 +163,8 @@
 block discarded – undo
163 163
             $children,
164 164
             Chunk::class,
165 165
             sprintf(
166
-               'All children elements of %s:EncryptionMethod must be of type \SimpleSAML\XML\Chunk.',
167
-               static::NS_PREFIX
166
+                'All children elements of %s:EncryptionMethod must be of type \SimpleSAML\XML\Chunk.',
167
+                static::NS_PREFIX
168 168
             ),
169 169
             InvalidArgumentException::class,
170 170
         );
Please login to merge, or discard this patch.