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

22 lines
325 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;
/**
* Create a new event instance.
*
2018-02-16 16:25:35 +08:00
* @param Router $router
2016-10-25 22:47:50 +08:00
* @return void
*/
public function __construct(Router $router)
{
$this->router = $router;
}
}