Completed
Push — master ( b72f37...0c7d03 )
by Alberto
15s
created

PhakePlugin   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getStrategy() 0 4 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Moka\Plugin\Phake;
5
6
use Moka\Plugin\PluginInterface;
7
use Moka\Strategy\MockingStrategyInterface;
8
9
/**
10
 * Class PhakePlugin
11
 * @package Moka\Plugin\Phake
12
 */
13
class PhakePlugin implements PluginInterface
14
{
15
    /**
16
     * @return MockingStrategyInterface
17
     */
18 2
    public static function getStrategy(): MockingStrategyInterface
19
    {
20 2
        return new PhakeMockingStrategy();
21
    }
22
}
23