0

理解するのを手伝ってください。
標準アプリケーション CRUD では、サービスの接続時に:
/src/App/Panel/Service/CategoriesService.php
アクションで: リポジトリへ
/src/App/Panel/Action/PanelCategoriesAction.phpの 500 エラー リンクが発生します: https://github.com/drakulitka/expressive.loc.git Zend Expressive + Doctrine


私の英語でごめんなさい

4

1 に答える 1

1

あなたはここでいくつかのものを混ぜています。これはあなたのエンティティである必要があります:

<?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,
        ],
    ],
];
于 2016-05-31T17:15:35.997 に答える