php-hotfix/src/HotfixApplication.php
2016-07-21 03:08:06 +02:00

18 lines
348 B
PHP

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