PluginInterface
last analyzed

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 9
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
getStrategy() 0 1 ?
1
<?php
2
declare(strict_types=1);
3
4
namespace Moka\Plugin;
5
6
use Moka\Exception\MissingDependencyException;
7
use Moka\Strategy\MockingStrategyInterface;
8
9
interface PluginInterface
10
{
11
    /**
12
     * @return MockingStrategyInterface
13
     *
14
     * @throws MissingDependencyException
15
     */
16
    public static function getStrategy(): MockingStrategyInterface;
17
}
18