12 lines
254 B
PHP
12 lines
254 B
PHP
<?php
|
|
|
|
use Config\App;
|
|
use CodeIgniter\CLI\CLI;
|
|
|
|
return [
|
|
'foo' => 'The command will use this as foo.',
|
|
'bar' => 'The command will use this as bar.',
|
|
'baz' => 'The baz is here.',
|
|
'bas' => CLI::color('bas', 'green') . (new App())->baseURL,
|
|
];
|