Completed
Push — master ( d8752e...0a1b06 )
by Hannes
02:26
created
src/Record/OpeningRecord.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace byrokrat\autogiro\Matcher;
6 6
 
Please login to merge, or discard this patch.
src/Parser/RecordReader/RecordReader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace byrokrat\autogiro\Matcher;
6 6
 
Please login to merge, or discard this patch.
src/Parser/RecordReader/DefaultNewOpeningRecordReader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace byrokrat\autogiro\Parser\RecordReader;
6 6
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
                 'customerNr' => new Matcher\Number(65, 6),
36 36
                 'bankgiro' => new Matcher\Number(71, 10),
37 37
             ],
38
-            function (array $values) use ($accountFactory) {
38
+            function(array $values) use ($accountFactory) {
39 39
                 return new Record\OpeningRecord(
40 40
                     trim($values['layout']),
41 41
                     \DateTimeImmutable::createFromFormat('Ymd', $values['date']),
Please login to merge, or discard this patch.
src/Parser/Strategy/MandateResponseStrategy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace byrokrat\autogiro\Matcher;
6 6
 
Please login to merge, or discard this patch.
src/Section.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace byrokrat\autogiro\Matcher;
6 6
 
Please login to merge, or discard this patch.
src/Record/NullRecord.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace byrokrat\autogiro\Matcher;
6 6
 
Please login to merge, or discard this patch.