This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/libraries/Console/Application.php

30 lines
456 B
PHP
Raw Normal View History

2016-01-22 20:07:44 +00:00
<?php
namespace Sakura\Console;
/**
2016-02-02 21:04:15 +00:00
* Command line interface main.
*
2016-01-22 20:07:44 +00:00
* @package Sakura
2016-02-02 21:04:15 +00:00
* @author Julian van de Groep <me@flash.moe>
2016-01-22 20:07:44 +00:00
*/
class Application extends \CLIFramework\Application
{
2016-02-02 21:04:15 +00:00
/**
* CLI Application name
*/
2016-01-22 20:07:44 +00:00
const NAME = 'Sakura';
2016-02-02 21:04:15 +00:00
/**
* CLI Application version
*/
2016-01-22 20:07:44 +00:00
const VERSION = SAKURA_VERSION;
2016-02-02 21:04:15 +00:00
/**
* CLI initialiser
*/
2016-01-22 20:07:44 +00:00
public function init()
{
parent::init();
}
}