TDoG-Skin/app/Events/ConfigureRoutes.php

16 lines
216 B
PHP
Raw Normal View History

2024-08-17 18:43:48 +08:00
<?php
namespace App\Events;
use Illuminate\Routing\Router;
class ConfigureRoutes extends Event
{
public $router;
public function __construct(Router $router)
{
$this->router = $router;
}
}