php-hotfix/src/HotfixApplication.php
Christopher Vagnetoft c378d62ccb Initial commit
2016-04-19 15:54:03 +02:00

18 lines
319 B
PHP

<?php
namespace NoccyLabs\Hotfix;
use Symfony\Component\Console\Application;
class HotfixApplication extends Application
{
public function __construct()
{
parent::__construct("Hotfixer", "0.1");
$this->add(new Command\ApplyCommand());
$this->add(new Command\SignCommand());
}
}