@@ -17,7 +17,7 @@ |
||
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 | } |
@@ -4,5 +4,5 @@ |
||
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 |
@@ -54,9 +54,9 @@ |
||
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 | } |