あなたはここでいくつかのものを混ぜています。これはあなたのエンティティである必要があります:
<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="categories")
* @ORM\Entity(repositoryClass="App\Entity\Repository\CategoriesRepository")
*/
class Categories
{
}
ドキュメント コメント アノテーションでは、Doctrine にカスタム リポジトリ クラスの場所を伝えます。Doctrine がそれをロードします。リポジトリにはコンストラクターは必要ありません。Doctrine がこれを処理します。
<?php
namespace App\Entity\Repository;
use App\Entity\Categories;
use Doctrine\ORM\EntityRepository;
class CategoriesRepository extends EntityRepository implements CategoriesRepositoryInterface
{
// No constructor here
public function fetchAll()
{
// ...
}
}
そして、工場は次のようになります。
<?php
namespace App\Panel\Factory;
use Doctrine\ORM\EntityManager;
use Interop\Container\ContainerInterface;
use App\Entity\Categories;
class CategoriesRepositoryFactory
{
/**
* @param ContainerInterface $container
* @return CategoriesRepository
*/
public function __invoke(ContainerInterface $container)
{
// Get the entitymanager and load the repository for the categories entity
return $container->get(EntityManager::class)->getRepository(Categories::class);
}
}
構成では、これを使用します:
<?php
return [
'dependencies' => [
'invokables' => [
],
'abstract_factories' => [
],
'factories' => [
App\Entity\Repository\CategoriesRepositoryInterface::class => App\Panel\Factory\CategoriesRepositoryFactory::class,
],
],
];