Completed
Pull Request — master (#25)
by Hannes
03:05
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/Tree/Flag.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-20 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/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-20 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/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-20 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
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      */
93 93
     final public function createVisitors(int $flags = 0): VisitorInterface
94 94
     {
95
-        $flag = function (int $needle) use ($flags) {
95
+        $flag = function(int $needle) use ($flags) {
96 96
             return ($needle & $flags) == $needle;
97 97
         };
98 98
 
Please login to merge, or discard this patch.
src/Visitor/MessageVisitor.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-20 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-20 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/Parser/ParserFactory.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-20 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/Money/SignalMoneyParser.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-20 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\autogiro\Money;
24 24
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         if (isset(self::SIGNALS[$lastChar])) {
68 68
             $money = sprintf(
69 69
                 '-%s%s',
70
-                mb_substr($money, 0, mb_strlen($money)-1),
70
+                mb_substr($money, 0, mb_strlen($money) - 1),
71 71
                 self::SIGNALS[$lastChar]
72 72
             );
73 73
         }
Please login to merge, or discard this patch.
src/Money/SignalMoneyFormatter.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-20 Hannes Forsgård
19 19
  */
20 20
 
21
-declare(strict_types = 1);
21
+declare(strict_types=1);
22 22
 
23 23
 namespace byrokrat\autogiro\Money;
24 24
 
Please login to merge, or discard this patch.