Completed
Push — dev ( 1872d9...8f3f2e )
by Андрей
02:34
created

InvalidResolverByModuleContextMap::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 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
}