Joomlatools\Console\Application::getDefaultCommands PHP 메소드

getDefaultCommands() 보호된 메소드

Gets the default commands that should always be available.
protected getDefaultCommands ( ) : Command[]
리턴 Command[] An array of default Command instances
    protected function getDefaultCommands()
    {
        $commands = parent::getDefaultCommands();
        $commands = array_merge($commands, array(new Command\Cache\Clear(), new Command\Cache\ListObjects(), new Command\Cache\Purge(), new Command\Database\Install(), new Command\Database\Drop(), new Command\Extension\Disable(), new Command\Extension\Enable(), new Command\Extension\Install(), new Command\Extension\Uninstall(), new Command\Extension\InstallFile(), new Command\Extension\Register(), new Command\Extension\Symlink(), new Command\Finder\Index(), new Command\Finder\Purge(), new Command\Plugin\ListAll(), new Command\Plugin\Install(), new Command\Plugin\Uninstall(), new Command\Site\CheckIn(), new Command\Site\Configure(), new Command\Site\Create(), new Command\Site\Deploy(), new Command\Site\Delete(), new Command\Site\Download(), new Command\Site\Install(), new Command\Site\Listing(), new Command\Site\Token(), new Command\Vhost\Create(), new Command\Vhost\Remove(), new Command\Versions()));
        return $commands;
    }