Completed
Push — dev ( 269014...5eca8b )
by Андрей
03:28
created

ResolverByClassName::resolveEntryNameByContext()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 2
1
<?php
2
/**
3
 * @link    https://github.com/nnx-framework/entry-name-resolver
4
 * @author  Malofeykin Andrey  <[email protected]>
5
 */
6
namespace Nnx\EntryNameResolver;
7
8
/**
9
 * Class EntryNameResolver
10
 *
11
 * @package Nnx\EntryNameResolver\EntryNameResolver
12
 */
13
class ResolverByClassName implements EntryNameResolverInterface
14
{
15
    /**
16
     * @inheritdoc
17
     *
18
     * @param      $entryName
19
     * @param null $context
20
     *
21
     * @return null|string
22
     */
23
    public function resolveEntryNameByContext($entryName, $context = null)
24
    {
25
    }
26
}
27