for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Nubs\PwMan;
use Symfony\Component\Console\Application as SymfonyApplication;
use Nubs\PwMan\Command\Get;
use Nubs\PwMan\Command\Set;
/**
* The symfony application wrapper for PwMan.
*/
class Application extends SymfonyApplication
{
* Initialize the pwman application with all of the different commands.
*
* @api
public function __construct()
parent::__construct('pwman', '0.1.0');
$getCommand = new Get();
$this->add($getCommand);
$setCommand = new Set();
$this->add($setCommand);
}