MageConfigSync\ConfigYaml::buildScopeKey PHP Méthode

buildScopeKey() public static méthode

public static buildScopeKey ( $scope, $scope_id ) : string
$scope
$scope_id
Résultat string
    public static function buildScopeKey($scope, $scope_id)
    {
        if ($scope == 'default') {
            return $scope;
        } else {
            return sprintf("%s-%s", $scope, $scope_id);
        }
    }