Completed
Pull Request — master (#37)
by Angelo
02:34
created

ProxyGeneratorFactory   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 22
ccs 0
cts 8
cp 0
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A get() 0 4 1
A build() 0 4 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Moka\Factory;
5
6
7
use Moka\Generator\ProxyGenerator;
8
9
class ProxyGeneratorFactory
10
{
11
    /**
12
     * @param string $fqcn
13
     * @param MockingStrategyInterface $mockingStrategy
14
     * @return ProxyInterface
15
     */
16
    public static function get(string $fqcn, MockingStrategyInterface $mockingStrategy)
0 ignored issues
show
Unused Code introduced by
The parameter $fqcn is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
17
    {
18
        return (new ProxyGenerator($mockingStrategy));
19
    }
20
21
    /**
22
     * @param string $fqcn
23
     * @param MockingStrategyInterface $mockingStrategy
24
     * @return ProxyInterface
25
     */
26
    protected static function build(string $fqcn, MockingStrategyInterface $mockingStrategy)
27
    {
28
        return new Proxy($fqcn, $mockingStrategy);
29
    }
30
}
31