1 | <?php |
||
29 | abstract class BaseCommand extends Command |
||
30 | { |
||
31 | /** |
||
32 | * @var ManagerInterface |
||
33 | */ |
||
34 | private $mediaManager; |
||
35 | |||
36 | /** |
||
37 | * @var Pool |
||
38 | */ |
||
39 | private $pool; |
||
40 | |||
41 | public function __construct(ManagerInterface $mediaManager, Pool $pool) |
||
48 | |||
49 | public function getMediaManager(): ManagerInterface |
||
53 | |||
54 | public function getMediaPool(): Pool |
||
58 | } |
||
59 |