Completed
Push — master ( 1872d9...1e5ff2 )
by Андрей
02:44
created

InvalidResolverByModuleContextMap   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 19
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * @link    https://github.com/nnx-framework/entry-name-resolver
4
 * @author  Malofeykin Andrey  <[email protected]>
5
 */
6
namespace Nnx\EntryNameResolver\PhpUnit\TestData\ContextResolver\Custom\Service\Module1;
7
8
use Nnx\ModuleOptions\ModuleOptionsPluginManagerInterface;
9
10
/**
11
 * Class InvalidResolverByModuleContextMap
12
 *
13
 * @package Nnx\EntryNameResolver\PhpUnit\TestData\ContextResolver\Custom\Service\Module1
14
 */
15
class InvalidResolverByModuleContextMap
16
{
17
    /**
18
     * Менеджер настроек модулей
19
     *
20
     * @var \Nnx\ModuleOptions\ModuleOptionsPluginManagerInterface
21
     */
22
    protected $moduleOptionsPluginManager;
23
24
    /**
25
     * ResolverByModuleContextMap constructor.
26
     *
27
     * @param ModuleOptionsPluginManagerInterface $moduleOptionsPluginManager
28
     */
29
    public function __construct(ModuleOptionsPluginManagerInterface $moduleOptionsPluginManager)
30
    {
31
        $this->moduleOptionsPluginManager = $moduleOptionsPluginManager;
32
    }
33
}