@@ -67,11 +67,11 @@ |
||
67 | 67 | */ |
68 | 68 | public function register(): void |
69 | 69 | { |
70 | - $this->app->bind(ErrorHandlerInterface::class, function (ContainerInterface $app) { |
|
70 | + $this->app->bind(ErrorHandlerInterface::class, function(ContainerInterface $app) { |
|
71 | 71 | return new ErrorHandler($app->get(LoggerInterface::class)); |
72 | 72 | }); |
73 | 73 | |
74 | - $this->app->bind(ErrorHandlerMiddleware::class, function (ContainerInterface $app) { |
|
74 | + $this->app->bind(ErrorHandlerMiddleware::class, function(ContainerInterface $app) { |
|
75 | 75 | return new ErrorHandlerMiddleware( |
76 | 76 | $app->get(Config::class)->get('app.debug', false), |
77 | 77 | $app->get(LoggerInterface::class) |
@@ -161,26 +161,3 @@ |
||
161 | 161 | private function getTemplateClass(): string |
162 | 162 | { |
163 | 163 | return <<<EOF |
164 | - <?php |
|
165 | - namespace Platine\Framework\Migration; |
|
166 | - |
|
167 | - use Platine\Framework\Migration\AbstractMigration; |
|
168 | - |
|
169 | - class AddUserTable20210915100000 extends AbstractMigration |
|
170 | - { |
|
171 | - |
|
172 | - public function up(): void |
|
173 | - { |
|
174 | - //Action when migrate up |
|
175 | - |
|
176 | - } |
|
177 | - |
|
178 | - public function down(): void |
|
179 | - { |
|
180 | - //Action when migrate down |
|
181 | - |
|
182 | - } |
|
183 | - } |
|
184 | - EOF; |
|
185 | - } |
|
186 | -} |