1 | <?php |
||
18 | class ManifestRunner |
||
19 | { |
||
20 | /** |
||
21 | * @var EventDispatcherInterface |
||
22 | */ |
||
23 | protected $dispatcher; |
||
24 | |||
25 | /** |
||
26 | * Propagates the event dispatcher onto processor. |
||
27 | * |
||
28 | * @param EventDispatcherInterface $dispatcher |
||
29 | */ |
||
30 | 1 | public function setEventDispatcher(EventDispatcherInterface $dispatcher) |
|
34 | |||
35 | /** |
||
36 | * Configures and runs a manifest. |
||
37 | * |
||
38 | * @param ManifestInterface $manifest Manifest to be run |
||
39 | */ |
||
40 | 2 | public function run(ManifestInterface $manifest) |
|
58 | } |
||
59 |