Completed
Push — master ( ecf895...d8752e )
by Hannes
03:16
created
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.