1 | <?php namespace BuildR\Utils\Extension; |
||
19 | abstract class AbstractExtensionReceiver implements ExtensionReceiverInterface { |
||
20 | |||
21 | /** |
||
22 | * @type \BuildR\Utils\Extension\ObjectExtensionInterface[] |
||
23 | */ |
||
24 | protected $extensions = []; |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function __call($name, $arguments) { |
||
37 | |||
38 | /** |
||
39 | * {@inheritDoc} |
||
40 | */ |
||
41 | public function loadExtension(ObjectExtensionInterface $extension) { |
||
52 | |||
53 | /** |
||
54 | * {@inheritDoc} |
||
55 | */ |
||
56 | public function isExtensionLoaded(ObjectExtensionInterface $extension) { |
||
59 | |||
60 | /** |
||
61 | * {@inheritDoc} |
||
62 | */ |
||
63 | public function getAllLoadedExtension() { |
||
66 | |||
67 | } |
||
68 |