N98\Magento\Command\Config\DeleteCommand::deleteConfigEntry PHP Метод

deleteConfigEntry() приватный Метод

Delete concrete entry from config table specified by path, scope and scope-id
private deleteConfigEntry ( string $path, string $scope, integer $scopeId ) : array
$path string
$scope string
$scopeId integer
Результат array
    private function deleteConfigEntry($path, $scope, $scopeId)
    {
        $config = $this->_getConfigModel();
        $config->deleteConfig($path, $scope, $scopeId);
        return array('path' => $path, 'scope' => $scope, 'scopeId' => $scopeId);
    }