12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace App\Listeners;
- use Illuminate\Queue\InteractsWithQueue;
- use Illuminate\Contracts\Queue\ShouldQueue;
- /**
- * 重置卡片feed等级
- */
- class ResetPartnerLevelState
- {
- /**
- * Create the event listener.
- *
- * @return void
- */
- public function __construct()
- {
- //
- }
- /**
- * Handle the event.
- *
- * @param object $event
- * @return void
- */
- public function handle($event)
- {
- //
- }
- }
|