for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Spike library
* @author Tao <[email protected]>
*/
namespace Spike\Server\Command;
use Spike\Server\Application;
use Symfony\Component\Console\Command\Command as BaseCommand;
class Command extends BaseCommand
{
* @var Application
protected $server;
public function __construct(Application $server)
$this->server = $server;
parent::__construct(null);
}
* @return Application
public function getServer()
return $this->server;