D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
shubmkcj
/
createerp.com
/
br
/
logistics
/
system
/
CLI
/
Filename :
Console.php
back
Copy
<?php /** * This file is part of CodeIgniter 4 framework. * * (c) CodeIgniter Foundation <admin@codeigniter.com> * * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace CodeIgniter\CLI; use CodeIgniter\CodeIgniter; use Config\Services; use Exception; /** * Console */ class Console { /** * Runs the current command discovered on the CLI. * * @return int|void * * @throws Exception */ public function run() { $runner = Services::commands(); $params = array_merge(CLI::getSegments(), CLI::getOptions()); $params = $this->parseParamsForHelpOption($params); $command = array_shift($params) ?? 'list'; return $runner->run($command, $params); } /** * Displays basic information about the Console. */ public function showHeader(bool $suppress = false) { if ($suppress) { return; } CLI::write(sprintf( 'CodeIgniter v%s Command Line Tool - Server Time: %s UTC%s', CodeIgniter::CI_VERSION, date('Y-m-d H:i:s'), date('P') ), 'green'); CLI::newLine(); } /** * Introspects the `$params` passed for presence of the * `--help` option. * * If present, it will be found as `['help' => null]`. * We'll remove that as an option from `$params` and * unshift it as argument instead. */ private function parseParamsForHelpOption(array $params): array { if (array_key_exists('help', $params)) { unset($params['help']); $params = $params === [] ? ['list'] : $params; array_unshift($params, 'help'); } return $params; } }