Passed
Branch master (fcd681)
by Ryan
04:03
created
Category
sandbox.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
 $container = new Container();
19 19
 
20
-$container['simplepie.logger'] = function () {
20
+$container['simplepie.logger'] = function() {
21 21
     $logger = new Logger('SimplePie');
22 22
     $logger->pushHandler(new ErrorLogHandler(
23 23
         ErrorLogHandler::OPERATING_SYSTEM,
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     return $logger;
30 30
 };
31 31
 
32
-$container['simplepie.middleware'] = function () {
32
+$container['simplepie.middleware'] = function() {
33 33
     return $stack = (new HandlerStack())
34 34
         ->append(new Atom(), 'atom')
35 35
     ;
Please login to merge, or discard this patch.
src/Util/FeedLocator.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\Util;
12 12
 
Please login to merge, or discard this patch.
src/Util/Ns.php 1 patch
Spacing   +2 added lines, -2 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\Util;
12 12
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      *
87 87
      * @return string|null
88 88
      */
89
-    public function getPreferredNamespaceAlias(?string $namespaceUri = null): ?string
89
+    public function getPreferredNamespaceAlias(?string $namespaceUri = null) : ?string
90 90
     {
91 91
         $namespaceUri = $namespaceUri
92 92
             ?? $this->domDocument->documentElement->namespaceUri;
Please login to merge, or discard this patch.
src/SimplePie.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/Parser/AbstractParser.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\Parser;
12 12
 
Please login to merge, or discard this patch.
src/Parser/ParserInterface.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\Parser;
12 12
 
Please login to merge, or discard this patch.
src/Parser/Date.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\Parser;
12 12
 
Please login to merge, or discard this patch.
src/Parser/Html.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\Parser;
12 12
 
Please login to merge, or discard this patch.
src/Parser/Xml.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\Parser;
12 12
 
Please login to merge, or discard this patch.