* local up

This commit is contained in:
2024-11-02 18:17:28 +03:00
parent caa3539321
commit b66e8151d8
6 changed files with 40 additions and 29 deletions

View File

@ -13,7 +13,7 @@ class Plugin extends PluginBase
*/
public $require = ['Offline.Mall'];
final public function boot(): void
public function boot()
{
$gateway = $this->app->get(PaymentGateway::class);
$gateway->registerProvider(new SberCheckout());
@ -23,4 +23,12 @@ class Plugin extends PluginBase
return new DefaultMoneyRepair();
});
}
public function registerComponents()
{
}
public function registerSettings()
{
}
}