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 MoipConfigCommand extends Command {
/**
* The console command name.
*
* @var string
*/
protected $name = 'moip:config';
* The console command description.
protected $description = 'Criar arquivo de configuracao';
* 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('config:publish', ["--path" => "vendor/sostheblack/moip/src/config", "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.