Completed
Push — dynamic_siteaccesses ( 16c7ff )
by
unknown
20:23
created

DefaultScopeConfigResolver   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
/**
4
 * @copyright Copyright (C) eZ Systems AS. All rights reserved.
5
 * @license For full copyright and license information view LICENSE file distributed with this source code.
6
 */
7
declare(strict_types=1);
8
9
namespace eZ\Bundle\EzPublishCoreBundle\DependencyInjection\Configuration\ConfigResolver;
10
11
class DefaultScopeConfigResolver extends ContainerBasedConfigResolver
12
{
13
    private const SCOPE_NAME = 'default';
14
15
    public function __construct(string $defaultNamespace)
16
    {
17
        parent::__construct(self::SCOPE_NAME, $defaultNamespace);
18
    }
19
}
20