| 1 | <?php namespace SOSTheBlack\Moip\Commands; |
||
| 5 | class MoipAssetsCommand extends Command { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * The console command name. |
||
| 9 | * |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | protected $name = 'moip:assets'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * The console command description. |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | protected $description = 'Publicar assests view em sua aplicacao.'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Create a new command instance. |
||
| 23 | * |
||
| 24 | * @return void |
||
|
|
|||
| 25 | */ |
||
| 26 | public function __construct() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Execute the console command. |
||
| 33 | * |
||
| 34 | * @return mixed |
||
| 35 | */ |
||
| 36 | public function fire() |
||
| 40 | } |
||
| 41 |
Adding a
@returnannotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.