catchAdmin/app/Listeners/Command.php

31 lines
445 B
PHP
Raw Normal View History

2022-12-05 23:01:12 +08:00
<?php
namespace App\Listeners;
use Illuminate\Console\Events\CommandFinished;
class Command
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param CommandFinished $event
* @return void
*/
public function handle(CommandFinished $event)
{
//
// dd($event->command);
}
}