@@ -50,7 +50,7 @@ |
||
50 | 50 | public function enable() { |
51 | 51 | $this->container->set( |
52 | 52 | $this->repositoryNameParser->getRepositoryNamePattern(), |
53 | - [$this, 'getRepository'] |
|
53 | + [ $this, 'getRepository' ] |
|
54 | 54 | )->singleton(); |
55 | 55 | } |
56 | 56 |
@@ -10,7 +10,7 @@ |
||
10 | 10 | */ |
11 | 11 | public function convertRepositoryNameToEntityName($repositoryName) { |
12 | 12 | return str_replace( |
13 | - ['Repositories', 'Repository'], ['Entities', ''], $repositoryName |
|
13 | + [ 'Repositories', 'Repository' ], [ 'Entities', '' ], $repositoryName |
|
14 | 14 | ); |
15 | 15 | } |
16 | 16 |