first commit

This commit is contained in:
JaguarJack
2022-12-05 23:01:12 +08:00
commit 0024080c28
322 changed files with 27698 additions and 0 deletions

30
app/Listeners/Command.php Normal file
View 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);
}
}

View File

@@ -0,0 +1,28 @@
<?php
namespace App\Listeners;
class RouteMatched
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param object $event
* @return void
*/
public function handle(\Illuminate\Routing\Events\RouteMatched $event)
{
//
// dd($event->route);
}
}

27
app/Listeners/test.php Normal file
View File

@@ -0,0 +1,27 @@
<?php
namespace App\Listeners;
class test
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param object $event
* @return void
*/
public function handle($event)
{
//
}
}