Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class ManagerEventArgs extends EventArgs |
||
13 | { |
||
14 | /** @var ObjectManager */ |
||
15 | private $objectManager; |
||
16 | |||
17 | public function __construct(ObjectManager $objectManager) |
||
18 | { |
||
19 | $this->objectManager = $objectManager; |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Retrieves the associated ObjectManager. |
||
24 | * |
||
25 | * @return ObjectManager |
||
26 | */ |
||
27 | public function getObjectManager() |
||
30 | } |
||
31 | } |
||
34 |