1 | <?php |
||
11 | class UDB2Projector implements EventListenerInterface |
||
12 | { |
||
13 | use DelegateEventHandlingToSpecificMethodTrait; |
||
14 | |||
15 | /** |
||
16 | * @var RepositoryInterface |
||
17 | */ |
||
18 | private $repository; |
||
19 | |||
20 | /** |
||
21 | * @var ItemBaseAdapterFactory |
||
22 | */ |
||
23 | protected $itemBaseAdapterFactory; |
||
24 | |||
25 | /** |
||
26 | * UDB2Projector constructor. |
||
27 | * |
||
28 | * @param RepositoryInterface $repository |
||
29 | * @param ItemBaseAdapterFactory $itemBaseAdapterFactory |
||
30 | */ |
||
31 | public function __construct( |
||
38 | |||
39 | public function applyOrganizerImportedFromUDB2( |
||
55 | } |
||
56 |