@@ -67,21 +67,21 @@ |
||
| 67 | 67 | */ |
| 68 | 68 | private function createConnection(array $connectionParams): void |
| 69 | 69 | { |
| 70 | - $this->container->set(Connection::class, function () use ($connectionParams): Connection { |
|
| 70 | + $this->container->set(Connection::class, function() use ($connectionParams): Connection { |
|
| 71 | 71 | return DriverManager::getConnection($connectionParams); |
| 72 | 72 | }); |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | private function createModelManager(): void |
| 76 | 76 | { |
| 77 | - $this->container->set(ModelManager::class, function (): ModelManager { |
|
| 77 | + $this->container->set(ModelManager::class, function(): ModelManager { |
|
| 78 | 78 | return new ModelManager($this->container); |
| 79 | 79 | }); |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | private function createConfig(bool $useUUID): void |
| 83 | 83 | { |
| 84 | - $this->container->set(Config::class, function () use ($useUUID): Config { |
|
| 84 | + $this->container->set(Config::class, function() use ($useUUID): Config { |
|
| 85 | 85 | return new Config($useUUID); |
| 86 | 86 | }); |
| 87 | 87 | } |