TDoG-Skin/app/Events/ConfigureRoutes.php
2024-08-17 19:13:54 +08:00

16 lines
216 B
PHP
Executable File

<?php
namespace App\Events;
use Illuminate\Routing\Router;
class ConfigureRoutes extends Event
{
public $router;
public function __construct(Router $router)
{
$this->router = $router;
}
}