What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Hi Actually I am trying to create custom validator in spryker form. But when i am trying to pass the

U03TXRYL7U7
U03TXRYL7U7 Posts: 64 🧑🏻‍🚀 - Cadet

Hi
Actually I am trying to create custom validator in spryker form.
But when i am trying to pass the instance of repository from the form class, it is giving error. Can you please look into this?

Comments

  • Alberto Reyer
    Alberto Reyer Posts: 690 🪐 - Explorer

    Types do not have access to any factory/facade/etc.

    If you need the factory you can use the \Spryker\Zed\Kernel\Business\FactoryResolverAwareTrait (or the one for the application you are working with).

    But the Symfony/Spryker way would be to pass the repository from the factory that creates the type into the type via options or in the constructor: https://symfony.com/doc/4.1/form/form_dependencies.html

  • Alberto Reyer
    Alberto Reyer Posts: 690 🪐 - Explorer

    Passing it via options is the prefered way in spryker

  • U03TXRYL7U7
    U03TXRYL7U7 Posts: 64 🧑🏻‍🚀 - Cadet

    ok thanks