Cake\Upgrade\Shell\UpgradeShell::_getActions PHP Method

_getActions() protected method

If the all function is called, derive which tasks to call, and in what order based on the option parser info
protected _getActions ( ) : array
return array
    protected function _getActions()
    {
        $all = [];
        foreach ($this->OptionParser->subcommands() as $command) {
            $name = $command->name();
            if ($name === 'all' || $name === 'skeleton') {
                continue;
            }
            $className = ucfirst(Inflector::camelize($name));
            $all[$name] = $className;
        }
        return $all;
    }