first commit
This commit is contained in:
30
app/Listeners/Command.php
Normal file
30
app/Listeners/Command.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user