php-hotfix/src/HotfixApplication.php

19 lines
428 B
PHP
Raw Normal View History

2016-04-19 13:54:03 +00:00
<?php
namespace NoccyLabs\Hotfix;
use Symfony\Component\Console\Application;
class HotfixApplication extends Application
{
public function __construct()
{
2016-12-02 13:33:19 +00:00
parent::__construct("Hotfix", APP_VERSION.(defined('PHAR_BUILD_DATE')?" (".PHAR_BUILD_DATE.")":""));
2016-04-19 13:54:03 +00:00
$this->add(new Command\ApplyCommand());
$this->add(new Command\SignCommand());
$this->add(new Command\FactsCommand());
2016-04-19 13:54:03 +00:00
}
}