Passed
Push — feature-refactor-orm-less ( d53a1e...2cb1be )
by Laurent
05:34
created
src/Administration/Infrastructure/Finders/Doctrine/DoctrineUserFinder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
         ;
86 86
 
87 87
         return new Users(
88
-            ...\array_map(static function (array $user) {
88
+            ...\array_map(static function(array $user) {
89 89
                 return (new UserModelMapper())->getReadModelFromArray($user);
90 90
             }, $result)
91 91
         );
Please login to merge, or discard this patch.
Administration/Infrastructure/Finders/Doctrine/DoctrineSupplierFinder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
         ;
99 99
 
100 100
         return new Suppliers(
101
-            ...\array_map(static function (array $supplier) {
101
+            ...\array_map(static function(array $supplier) {
102 102
                 return (new SupplierModelMapper())->getReadModelFromArray($supplier);
103 103
             }, $result)
104 104
         );
Please login to merge, or discard this patch.
Administration/Infrastructure/Finders/Doctrine/DoctrineCompanyFinder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
         $result = $query->execute()->fetchAllAssociative();
86 86
 
87 87
         return new Companies(
88
-            ...\array_map(static function (array $company) {
88
+            ...\array_map(static function(array $company) {
89 89
                 return (new CompanyModelMapper())->getReadModelFromArray($company);
90 90
             }, $result)
91 91
         );
Please login to merge, or discard this patch.