Total Complexity | 5 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Coverage | 46.67% |
Changes | 2 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
12 | abstract class AbstractStrategy implements AbstractStrategyInterface |
||
13 | { |
||
14 | /** |
||
15 | * @param FileAdder $fileAdder |
||
16 | * |
||
17 | * @return string |
||
18 | */ |
||
19 | 2 | public static function makeFileName($fileAdder) |
|
47 | } |
||
48 | |||
49 | /** |
||
50 | * @param $path |
||
51 | * @param $extension |
||
52 | * |
||
53 | * @return string |
||
54 | */ |
||
55 | abstract public static function transformFileName($path, $extension); |
||
56 | } |
||
57 |