1 | <?php |
||
7 | abstract class AbstractHook |
||
8 | { |
||
9 | /** |
||
10 | * @var \TYPO3\CMS\Extbase\Object\ObjectManagerInterface $objectManager |
||
11 | */ |
||
12 | protected $objectManager; |
||
13 | |||
14 | /** |
||
15 | * @param ObjectManagerInterface $objectManager |
||
16 | */ |
||
17 | 3 | public function injectObjectManager(ObjectManagerInterface $objectManager) |
|
21 | |||
22 | 3 | public function __construct() |
|
26 | } |
||
27 |