| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Module\Transaction\Providers;
- use App\Module\Transaction\Commands\RechargeStatus50To202Command;
- use Illuminate\Support\ServiceProvider;
- /**
- *
- */
- class TransactionServiceProvider extends ServiceProvider
- {
- /**
- * 事件到监听器的映射
- *
- * @var array<class-string, array<int, class-string>>
- */
- protected $listen = [
- ];
- /**
- * 注册任何事件监听器
- */
- public function boot(): void
- {
- $this->commands([
- RechargeStatus50To202Command::class
- ]);
- }
- }
|