Jump to content

Problem z tagowanymi serwisami - iterable nie widzi żadnych klas


Recommended Posts

Cześć,

PS Version: 8.1.6
Problem dotyczy tagowanych serwisów.
Zgodnie z dokumentacją: https://devdocs.prestashop-project.org/8/modules/concepts/services/

Do głównego pliku config/front/services.yml dołączyłem plik common.yml


 

imports:
  - { resource: ../common.yml }


plik common.yml

 

services:
  _defaults:
    autowire: true
    public: true
    bind:
      $productCalculator: !tagged ushop.calculator_type

  _instanceof:
    PrestaShop\Module\ushop\service\ProductTypeCalculator\ProductTypeCalculatorInterface:
      tags: [ ushop.calculator_type ]

  ushop.calculator_strategy:
    autowire: true
    public: true
    autoconfigure: true
    class: 'PrestaShop\Module\ushop\service\ProductCalculatorStrategy'


Pobieranie serwisu

$productCalculateStrategy = $this->get('ushop.service.product_calculator');

konstruktor serwisu
 

public function __construct(iterable $productCalculator) {
        foreach ($productCalculator as $iterated) {
            $this->productCalculators[] =  $iterated;
}



Serwis jest pobierany, ale żadne obiekty klas dziedziczących ProductTypeCalculatorInterface nie są wstrzykiwane do konstruktora - iterator jest pusty.
Próbowałem również manualnie stworzyć serwisy każdej z klas dziedziczących i otagowanie, jednakże nie zmienia to absolutnie niczego.

To nie działa ani na controllerach frontowych ani adminowych.
Gdzie może leżeć problem?

 

Edited by Angmarek (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...