1 | <?php namespace Indatus\Dispatcher\Commands; |
||
20 | class Make extends ConsoleMakeCommand |
||
21 | { |
||
22 | /** |
||
23 | * The console command name. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $name = 'scheduled:make'; |
||
28 | |||
29 | /** |
||
30 | * The console command description. |
||
31 | * |
||
32 | * @var string |
||
33 | */ |
||
34 | protected $description = 'Create a new scheduled artisan command'; |
||
35 | |||
36 | /** |
||
37 | * @param string $name |
||
38 | * @codeCoverageIgnore |
||
39 | */ |
||
40 | protected function buildClass($name) |
||
44 | |||
45 | /** |
||
46 | * Make sure we're implementing our own class |
||
47 | * @param $stub |
||
48 | * @return string |
||
49 | */ |
||
50 | 1 | protected function extendStub($stub) |
|
68 | } |
||
69 |