Completed
Pull Request — master (#37)
by Angelo
03:16 queued 01:16
created

ProxyGeneratorFactory::build()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 2
crap 2
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