Magestead\Command\Cache\DisableCommand::getCommand PHP Method

getCommand() protected method

protected getCommand ( Config $config, $cacheType ) : boolean | string
$config Magestead\Helper\Config
return 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:disable {$cacheType}";
            case 'magento2':
                return "cd /var/www/public;bin/magento cache:disable {$cacheType}";
        }
        return false;
    }