Passed
Push — main ( 56e558...7a7f73 )
by Slawomir
03:59
created
src/Infrastructure/Doctrine/Transactions/DoctrineTransactionFactory.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         parent::__construct($managerRegistry);
18 18
     }
19 19
 
20
-   public function createTransaction($func): TransactionInterface
20
+    public function createTransaction($func): TransactionInterface
21 21
     {
22 22
         return new DoctrineTransaction($this->getEntityManager(), $func);
23 23
     }
Please login to merge, or discard this patch.
src/Infrastructure/Security/LoggedInUserProviderInterface.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,5 +4,5 @@
 block discarded – undo
4 4
 
5 5
 interface LoggedInUserProviderInterface
6 6
 {
7
-   public function getUser(): LoggedInUser;
7
+    public function getUser(): LoggedInUser;
8 8
 }
9 9
\ No newline at end of file
Please login to merge, or discard this patch.
src/Infrastructure/Events/Api/ApplicationEventSubscriber.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,9 +54,9 @@
 block discarded – undo
54 54
     {
55 55
         return $this
56 56
             ->subscribedHandlers
57
-            ->filter(function ($value, $key) use ($event) {
57
+            ->filter(function($value, $key) use ($event) {
58 58
                 return $key == $event->getName();
59
-            })->map(function ($value) {
59
+            })->map(function($value) {
60 60
                 return $value;
61 61
             })->toArray();
62 62
     }
Please login to merge, or discard this patch.