Multiple fixes
* Implemented ScriptRunner with environment expansion and cleaner code. * Added ApiClient plugin (com.noccy.apiclient) * Renamed CHANGELOG.md to VERSIONS.md * Shuffled buildtools * Added first unittests
This commit is contained in:
@ -25,7 +25,7 @@ class SparkApplication extends Application
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct("Spark", APP_VERSION);
|
||||
parent::__construct("Spark\u{26a1}", APP_VERSION);
|
||||
self::$instance = $this;
|
||||
|
||||
$this->resourceManager = new ResourceManager();
|
||||
@ -39,6 +39,10 @@ class SparkApplication extends Application
|
||||
$this->add(new Commands\ReplCommand());
|
||||
$this->add(new Commands\InitCommand());
|
||||
|
||||
$this->get("list")->setHidden(true);
|
||||
$this->get("completion")->setHidden(true);
|
||||
$this->get("help")->setHidden(true);
|
||||
|
||||
if (getenv("SPARK_PLUGINS")) {
|
||||
$this->add(new Commands\PluginsCommand());
|
||||
}
|
||||
|
Reference in New Issue
Block a user