Passed
Branch master (fcd681)
by Ryan
04:03
created
Category
src/Sanitizer/Script.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * http://opensource.org/licenses/Apache2.0
7 7
  */
8 8
 
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace SimplePie\Sanitizer;
12 12
 
Please login to merge, or discard this patch.
src/Sanitizer/TextFormatting.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * http://opensource.org/licenses/Apache2.0
7 7
  */
8 8
 
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace SimplePie\Sanitizer;
12 12
 
Please login to merge, or discard this patch.
src/Sanitizer/Meta.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * http://opensource.org/licenses/Apache2.0
7 7
  */
8 8
 
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace SimplePie\Sanitizer;
12 12
 
Please login to merge, or discard this patch.
src/Sanitizer/Body.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * http://opensource.org/licenses/Apache2.0
7 7
  */
8 8
 
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace SimplePie\Sanitizer;
12 12
 
Please login to merge, or discard this patch.
src/Sanitizer/DeprecatedElements.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * http://opensource.org/licenses/Apache2.0
7 7
  */
8 8
 
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace SimplePie\Sanitizer;
12 12
 
Please login to merge, or discard this patch.
src/Sanitizer/Style.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * http://opensource.org/licenses/Apache2.0
7 7
  */
8 8
 
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace SimplePie\Sanitizer;
12 12
 
Please login to merge, or discard this patch.
src/Sanitizer/JavaScriptProtocol.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * http://opensource.org/licenses/Apache2.0
7 7
  */
8 8
 
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace SimplePie\Sanitizer;
12 12
 
Please login to merge, or discard this patch.
src/Container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * http://opensource.org/licenses/Apache2.0
7 7
  */
8 8
 
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace SimplePie;
12 12
 
Please login to merge, or discard this patch.
src/HandlerStackInterface.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * http://opensource.org/licenses/Apache2.0
7 7
  */
8 8
 
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace SimplePie;
12 12
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         callable $middleware,
42 42
         ?string $name = null,
43 43
         ?string $overrideType = null
44
-    ): HandlerStackInterface;
44
+    ) : HandlerStackInterface;
45 45
 
46 46
     /**
47 47
      * Appends a new middleware closure onto the end of the stack.
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         string $overrideType,
64 64
         callable $middleware,
65 65
         ?string $name = null
66
-    ): HandlerStackInterface;
66
+    ) : HandlerStackInterface;
67 67
 
68 68
     /**
69 69
      * Prepends a new middleware class onto the beginning of the stack.
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         callable $middleware,
86 86
         ?string $name = null,
87 87
         ?string $overrideType = null
88
-    ): HandlerStackInterface;
88
+    ) : HandlerStackInterface;
89 89
 
90 90
     /**
91 91
      * Prepends a new middleware closure onto the beginning of the stack.
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         string $overrideType,
108 108
         callable $middleware,
109 109
         ?string $name = null
110
-    ): HandlerStackInterface;
110
+    ) : HandlerStackInterface;
111 111
 
112 112
     /**
113 113
      * Invokes the stack of middleware.
@@ -124,5 +124,5 @@  discard block
 block discarded – undo
124 124
         stdClass $feedRoot,
125 125
         ?string $namespaceAlias,
126 126
         DOMXPath $xpath
127
-    ): void;
127
+    ) : void;
128 128
 }
Please login to merge, or discard this patch.