Completed
Push — master ( 2ac82b...20e937 )
by Hannes
01:35
created
src/Tree/Summary.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
  * Copyright 2016 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\autogiro\Tree;
24 24
 
Please login to merge, or discard this patch.
src/Xml/XmlWriter.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
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\autogiro\Xml;
24 24
 
Please login to merge, or discard this patch.
src/Visitor/PaymentVisitor.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
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\autogiro\Visitor;
24 24
 
Please login to merge, or discard this patch.
src/Visitor/Visitor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\autogiro\Visitor;
24 24
 
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
     private function dispatch(string $prefix, string $name, Node $node): void
78 78
     {
79
-        ($this->hooks[$prefix][strtolower($name)] ?? function () {})($node); // phpcs:ignore
79
+        ($this->hooks[$prefix][strtolower($name)] ?? function() {})($node); // phpcs:ignore
80 80
 
81 81
         $method = $prefix . $name;
82 82
 
Please login to merge, or discard this patch.
src/Visitor/VisitorFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\autogiro\Visitor;
24 24
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      */
92 92
     final public function createVisitors(int $flags = 0): VisitorInterface
93 93
     {
94
-        $flag = function (int $needle) use ($flags) {
94
+        $flag = function(int $needle) use ($flags) {
95 95
             return ($needle & $flags) == $needle;
96 96
         };
97 97
 
Please login to merge, or discard this patch.
src/Writer/TreeBuilder.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
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\autogiro\Writer;
24 24
 
Please login to merge, or discard this patch.
src/Parser/Parser.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
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\autogiro\Parser;
24 24
 
Please login to merge, or discard this patch.
src/MessageRetriever.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
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\autogiro;
24 24
 
Please login to merge, or discard this patch.
src/Exception/TreeException.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
  * Copyright 2016-19 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\autogiro\Exception;
24 24
 
Please login to merge, or discard this patch.