Calling Developers!
We are reenergizing our code contribution process! Learn More

Impossibility to complete the tutorial Persist, Fetch, and Transport Data across Layers and Services

Options
emiltotsev
emiltotsev Developer Posts: 6 🧑🏻‍🚀 - Cadet

Hello, when I try to add an antelope from the backoffice I have exception that class Generated\Zed\Kernel\Persistence\AbstractRepository" not found,

and when I try to read it I have as well "Pyz\Yves\TrainingPage\Plugin\Router\AbstactRouteProviderPlugin"

I think they are located in dependency "spryker/kernel", but what I need to do to have these classes. Thanks for your support.

Answers

  • filip.gojkovic955
    filip.gojkovic955 Spryker Solution Partner Posts: 19 ✨ - Novice
    Options

    Hi @emiltotsev.

    You have wrong path to Abstract Repository.
    You have: use Generated\Zed\Kernel\Persistence\AbstractRepository;

    You need:use Spryker\Zed\Kernel\Persistence\AbstractRepository;

    Other picture i think it should work. Because i don't see that you tried to use.
    use Pyz\Yves\Router\Plugin\RouteProvider\AbstractRouteProviderPlugin;

    You are using the right one which is:
    use Spryker\Yves\Router\Plugin\RouteProvider\AbstractRouteProviderPlugin;


    It could be that you have factory that returns AbstractRouteProviderPlugin from Pyz if you extended it from core to project level.

  • emiltotsev
    emiltotsev Developer Posts: 6 🧑🏻‍🚀 - Cadet
    Options

    Hello @filip.gojkovic955 ,

    Thanks, you helped a lot, I was not able to see these errors, probably my IDE is not configured correctly.

    Best Regards,

    Emil