33 lines
559 B
PHP
33 lines
559 B
PHP
<?php
|
|
/**
|
|
* Holds the console application meta.
|
|
* @package Sakura
|
|
*/
|
|
|
|
namespace Sakura\Console;
|
|
|
|
use CLIFramework\Application as CLIApp;
|
|
|
|
/**
|
|
* Command line interface main.
|
|
* @package Sakura
|
|
* @author Julian van de Groep <me@flash.moe>
|
|
*/
|
|
class Application extends CLIApp
|
|
{
|
|
/**
|
|
* CLI Application name.
|
|
*/
|
|
public const NAME = 'Sakura';
|
|
|
|
/**
|
|
* CLI Application version.
|
|
*/
|
|
public const VERSION = 9001;
|
|
|
|
/**
|
|
* Enable command autoloading.
|
|
* @var bool
|
|
*/
|
|
protected $commandAutoloadEnabled = true;
|
|
}
|