Magestead\Command\Cache\CleanCommand::getCommand PHP Méthode

getCommand() protected méthode

protected getCommand ( Config $config, $cacheType ) : boolean | string
$config Magestead\Helper\Config
Résultat boolean | string
    protected function getCommand(Config $config, $cacheType)
    {
        $type = $config->type;
        switch ($type) {
            case 'magento':
                return "cd /var/www/public;../bin/n98-magerun.phar cache:clean {$cacheType}";
            case 'magento2':
                return "cd /var/www/public;bin/magento cache:clean {$cacheType}";
        }
        return false;
    }