ManaPHP\Cli\Controller::getCommands PHP Метод

getCommands() публичный Метод

public getCommands ( ) : array
Результат array
    public function getCommands()
    {
        $controller = lcfirst(basename(get_called_class(), 'Controller'));
        $commands = [];
        $rc = new \ReflectionClass($this);
        foreach (get_class_methods($this) as $method) {
            if (preg_match('#^(.*)Command$#', $method, $match) !== 1) {
                continue;
            }
            $command = $controller . ($match[1] !== 'default' ? ':' . $match[1] : '');
            $rm = $rc->getMethod($match[0]);
            $comment = $rm->getDocComment();
            if ($comment && preg_match('#\\*\\s+@description\\s+(.*)#', $comment, $match) === 1) {
                $commands[$command] = $match[1];
            } else {
                $commands[$command] = '';
            }
        }
        if (count($commands) === 1) {
            $commands = [$controller => array_values($commands)[0]];
        }
        return $commands;
    }
Controller