1 | <?php |
||
30 | class ClearCompiledCommand extends Command |
||
31 | { |
||
32 | /** |
||
33 | * The console command name. |
||
34 | * |
||
35 | * @var string |
||
36 | */ |
||
37 | protected $name = 'ytake:smarty-clear-compiled'; |
||
38 | |||
39 | /** |
||
40 | * The console command description. |
||
41 | * |
||
42 | * @var string |
||
43 | */ |
||
44 | protected $description = 'Remove the compiled smarty file'; |
||
45 | |||
46 | /** |
||
47 | * Execute the console command. |
||
48 | * |
||
49 | * @param \Ytake\LaravelSmarty\SmartyFactory $smartyFactory |
||
50 | * @return int |
||
51 | */ |
||
52 | public function fire(SmartyFactory $smartyFactory) |
||
60 | |||
61 | /** |
||
62 | * Get the console command options. |
||
63 | * |
||
64 | * @return array |
||
65 | */ |
||
66 | protected function getOptions() |
||
73 | } |
||
74 |