| 12345678910111213141516171819 |
- <?php
- declare(strict_types=1);
- namespace SixShop\Points;
- use SixShop\Core\ExtensionAbstract;
- use SixShop\Payment\Contracts\PaymentExtensionInterface;
- use SixShop\Payment\Contracts\PaymentProviderInterface;
- use SixDec\RedeemCode\Hook\RedeemCodeHook;
- class Extension extends ExtensionAbstract
- {
- public const string EXTENSION_NAME = 'points';
- protected function getBaseDir(): string
- {
- return dirname(__DIR__);
- }
- }
|