for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace SOSTheBlack\Moip\Commands;
use Illuminate\Console\Command;
class MoipAssetsCommand extends Command {
/**
* The console command name.
*
* @var string
*/
protected $name = 'moip:assets';
* The console command description.
protected $description = 'Publicar assests view em sua aplicacao.';
* Create a new command instance.
* @return void
@return
Adding a @return annotation 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.
public function __construct()
{
parent::__construct();
}
* Execute the console command.
* @return mixed
public function fire()
$this->call('asset:publish', ['sostheblack/moip']);
Adding a
@return
annotation 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.