1 | <?php |
||
9 | class RouteListCommand extends BaseCommand |
||
10 | { |
||
11 | /** |
||
12 | * The console command name. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $name = 'route'; |
||
17 | |||
18 | /** |
||
19 | * The console command description. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = '[+] Shortcut to `route:list`'; |
||
24 | |||
25 | /** |
||
26 | * Create a new route command instance. |
||
27 | * |
||
28 | * @param \Illuminate\Contracts\Foundation\Application $app |
||
29 | */ |
||
30 | 2 | public function __construct(Application $app) |
|
34 | } |
||
35 |