for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PWWEB\Artomator\Commands\API;
use InfyOm\Generator\Commands\API\TestsGeneratorCommand as Base;
use PWWEB\Artomator\Common\CommandData;
class TestsGeneratorCommand extends Base
{
/**
* The console command name.
*
* @var string
*/
protected $name = 'artomator.api:tests';
* Create a new command instance.
public function __construct()
parent::__construct();
$this->commandData = new CommandData($this, CommandData::$COMMAND_TYPE_API);
}