Completed
Pull Request — master (#37)
by Angelo
03:16 queued 01:16
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
use Moka\Generator\ProxyGenerator;
7
8
class ProxyGeneratorFactory
9
{
10
    /**
11
     * @param string $fqcn
12
     * @param MockingStrategyInterface $mockingStrategy
13
     * @return ProxyInterface
14
     */
15
    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...
16
    {
17
        return (new ProxyGenerator($mockingStrategy));
18
    }
19
20
    /**
21
     * @param string $fqcn
22
     * @param MockingStrategyInterface $mockingStrategy
23
     * @return ProxyInterface
24
     */
25
    protected static function build(string $fqcn, MockingStrategyInterface $mockingStrategy)
26
    {
27
        return new Proxy($fqcn, $mockingStrategy);
28
    }
29
}
30