Total Complexity | 7 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class I { |
||
9 | public static function describe(string $scenario) { |
||
|
|||
10 | |||
11 | } |
||
12 | |||
13 | public static function verify(string $scenario, callable $verificationSteps = null) { |
||
14 | |||
15 | } |
||
16 | |||
17 | public static function expect(string $scenario, callable $verificationSteps = null) { |
||
18 | |||
19 | } |
||
20 | |||
21 | public static function match(string $variableName) { |
||
22 | |||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Stops execution for specified number of units of time. |
||
27 | * |
||
28 | * @param int $numberOfTimeUnits number of units of time. |
||
29 | * {@link Wait} specifies what unit should be used. |
||
30 | * |
||
31 | * @return Wait |
||
32 | */ |
||
33 | public static function wait($numberOfTimeUnits): Wait { |
||
34 | |||
35 | } |
||
36 | |||
37 | public static function lookAt(string $variableName): Router { |
||
39 | } |
||
40 | |||
41 | public static function usePlugin($plugin) { |
||
45 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.