Skip to content

Commit b41e9b9

Browse files
committed
Fix CS.
1 parent ac50cd3 commit b41e9b9

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/Application.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,11 @@
1818

1919
use Cake\Core\Configure;
2020
use Cake\Core\ContainerInterface;
21-
use Cake\Datasource\FactoryLocator;
2221
use Cake\Error\Middleware\ErrorHandlerMiddleware;
2322
use Cake\Http\BaseApplication;
2423
use Cake\Http\Middleware\BodyParserMiddleware;
2524
use Cake\Http\Middleware\CsrfProtectionMiddleware;
2625
use Cake\Http\MiddlewareQueue;
27-
use Cake\ORM\Locator\TableLocator;
2826
use Cake\Routing\Middleware\AssetMiddleware;
2927
use Cake\Routing\Middleware\RoutingMiddleware;
3028

@@ -49,9 +47,9 @@ public function bootstrap(): void
4947
parent::bootstrap();
5048

5149
// Use if you need fallback tables
52-
//FactoryLocator::add(
50+
//\Cake\Datasource\FactoryLocator::add(
5351
// 'Table',
54-
// (new TableLocator())->allowFallbackClass(false),
52+
// (new \Cake\ORM\Locator\TableLocator())->allowFallbackClass(false),
5553
//);
5654
}
5755

0 commit comments

Comments
 (0)