1 | <?php |
||
18 | class RouteCommands extends Command |
||
19 | { |
||
20 | /** |
||
21 | * The name and signature of the console command. |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $signature = 'laravel-api-manager:add-route'; |
||
26 | |||
27 | /** |
||
28 | * The console command description. |
||
29 | * |
||
30 | * @var string |
||
31 | */ |
||
32 | protected $description = 'Add api manager to route'; |
||
33 | |||
34 | /** |
||
35 | * Create a new command instance. |
||
36 | * |
||
37 | * @return void |
||
38 | */ |
||
39 | |||
40 | protected $drip; |
||
41 | |||
42 | public function __construct() |
||
47 | |||
48 | /** |
||
49 | * Execute the console command. |
||
50 | * |
||
51 | * @return mixed |
||
52 | */ |
||
53 | |||
54 | protected function content() |
||
60 | |||
61 | protected function contentApi() |
||
67 | |||
68 | |||
69 | public function handle() |
||
75 | } |
||
76 |