for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
declare(strict_types=1);
namespace eZ\Bundle\EzPublishCoreBundle\DependencyInjection\Configuration\ConfigResolver;
class DefaultScopeConfigResolver extends ContainerConfigResolver
{
private const SCOPE_NAME = 'default';
public function __construct(string $defaultNamespace)
parent::__construct(self::SCOPE_NAME, $defaultNamespace);
}
public function hasParameter(string $paramName, ?string $namespace = null, ?string $scope = null): bool
return parent::hasParameter($paramName, $namespace, self::SCOPE_NAME);
public function getParameter(string $paramName, ?string $namespace = null, ?string $scope = null)
return parent::getParameter($paramName, $namespace, self::SCOPE_NAME);