mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 05:42:19 +08:00
16 lines
216 B
PHP
Executable File
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;
|
|
}
|
|
}
|