blessing-skin-server/app/Events/ConfigureRoutes.php

16 lines
216 B
PHP
Raw Normal View History

2016-10-25 22:47:50 +08:00
<?php
namespace App\Events;
use Illuminate\Routing\Router;
2016-10-29 18:54:10 +08:00
class ConfigureRoutes extends Event
2016-10-25 22:47:50 +08:00
{
public $router;
public function __construct(Router $router)
{
$this->router = $router;
}
}