Completed
Branch master (91a5ce)
by Dennis
02:31
created
src/Domain/Alias.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Link0\Bunq\Domain;
4 4
 
Please login to merge, or discard this patch.
src/Domain/User.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Link0\Bunq\Domain;
4 4
 
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         $this->created = new \DateTimeImmutable($user['created'], $timezone);
110 110
         $this->updated = new \DateTimeImmutable($user['updated'], $timezone);
111 111
 
112
-        $this->alias = array_map(function ($alias) {
112
+        $this->alias = array_map(function($alias) {
113 113
             return Alias::fromArray($alias);
114 114
         }, $user['alias']);
115 115
 
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
         $this->mainAddress = Address::fromArray($user['address_main']);
124 124
         $this->postalAddress = Address::fromArray($user['address_postal']);
125 125
 
126
-        $this->notificationFilters = array_map(function ($notificationFilter) {
126
+        $this->notificationFilters = array_map(function($notificationFilter) {
127 127
             return NotificationFilter::fromArray($notificationFilter);
128 128
         }, $user['notification_filters']);
129 129
     }
Please login to merge, or discard this patch.
src/Domain/UserPerson.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Link0\Bunq\Domain;
4 4
 
Please login to merge, or discard this patch.
src/Domain/DeviceServer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Link0\Bunq\Domain;
4 4
 
Please login to merge, or discard this patch.
src/Domain/Id.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Link0\Bunq\Domain;
4 4
 
Please login to merge, or discard this patch.
src/Domain/NotificationFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Link0\Bunq\Domain;
4 4
 
Please login to merge, or discard this patch.
src/Domain/Token.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Link0\Bunq\Domain;
4 4
 
Please login to merge, or discard this patch.
src/Domain/Keypair.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Link0\Bunq\Domain;
4 4
 
Please login to merge, or discard this patch.
src/Domain/Installation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Link0\Bunq\Domain;
4 4
 
Please login to merge, or discard this patch.