| 1 | <?php |
||
| 26 | abstract class MagentoModuleAbstract |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * @var RemoteAdapterInterface |
||
| 30 | */ |
||
| 31 | protected $remoteAdapter; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param RemoteAdapterInterface $remoteAdapter |
||
| 35 | */ |
||
| 36 | public function __construct(RemoteAdapterInterface $remoteAdapter) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param string $method |
||
| 43 | * @param array $arguments |
||
| 44 | * |
||
| 45 | * @return ActionInterface |
||
| 46 | */ |
||
| 47 | protected function __createAction($method, $arguments = array()) |
||
| 51 | } |
||
| 52 |