13 lines
220 B
PHP
13 lines
220 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Modules\Payment\Providers;
|
||
|
|
|
||
|
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
|
||
|
|
class PaymentServiceProvider extends ServiceProvider
|
||
|
|
{
|
||
|
|
public function register(): void {}
|
||
|
|
|
||
|
|
public function boot(): void {}
|
||
|
|
}
|