| 12345678910111213141516171819202122 |
- <?php
- declare(strict_types=1);
- namespace SixShop\Payment;
- use SixShop\Core\ExtensionAbstract;
- use SixShop\Payment\Hook\OrderHook;
- class Extension extends ExtensionAbstract
- {
- public function getHooks(): array
- {
- return [
- OrderHook::class
- ];
- }
- protected function getBaseDir(): string
- {
- return dirname(__DIR__);
- }
- }
|