aboutsummaryrefslogtreecommitdiff
path: root/lib/cli.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/cli.php')
-rw-r--r--lib/cli.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/cli.php b/lib/cli.php
index a860871..910f4c1 100644
--- a/lib/cli.php
+++ b/lib/cli.php
@@ -4,7 +4,7 @@ class cli {
protected ?array $commandsCache = null;
- public function __construct(
+ function __construct(
protected string $ns
) {}
@@ -21,7 +21,7 @@ class cli {
exit(is_null($error) ? 0 : 1);
}
- public function getCommands(): array {
+ function getCommands(): array {
if (is_null($this->commandsCache)) {
$funcs = array_filter(get_defined_functions()['user'], fn(string $f) => str_starts_with($f, $this->ns));
$funcs = array_map(fn(string $f) => str_replace('_', '-', substr($f, strlen($this->ns.'\\'))), $funcs);
@@ -30,10 +30,10 @@ class cli {
return $this->commandsCache;
}
- public function run(): void {
+ function run(): void {
global $argv, $argc;
- if (PHP_SAPI != 'cli')
+ if (!is_cli())
cli::die('SAPI != cli');
if ($argc < 2)