From 79f2954da02892805cb74e8ff3428e62f1895253 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Mon, 8 Jan 2024 12:04:18 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/Unit/Factory/OrmFactory/BaseOrmFactory.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Unit/Factory/OrmFactory/BaseOrmFactory.php b/tests/Unit/Factory/OrmFactory/BaseOrmFactory.php index 4558b9f..a2dc78b 100644 --- a/tests/Unit/Factory/OrmFactory/BaseOrmFactory.php +++ b/tests/Unit/Factory/OrmFactory/BaseOrmFactory.php @@ -68,9 +68,9 @@ function (string $id) { protected function makeFactory(array $collectionsConfig = []): \Cycle\ORM\FactoryInterface { return (new OrmFactory($collectionsConfig))( - $this->container->get(\Cycle\Database\DatabaseManager::class), - $this->container->get(\Spiral\Core\FactoryInterface::class), - $this->container->get(\Yiisoft\Injector\Injector::class), + $this->container->get(DatabaseManager::class), + $this->container->get(FactoryInterface::class), + $this->container->get(Injector::class), ); } }