| 1 | <?php |
||
| 11 | class ConfigStub implements RandomStubInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param PreCommit $preCommit |
||
| 15 | * @param CommitMsg $commitMsg |
||
| 16 | * @param PrePush $prePush |
||
| 17 | * |
||
| 18 | * @return Config |
||
| 19 | */ |
||
| 20 | public static function create(PreCommit $preCommit, CommitMsg $commitMsg, PrePush $prePush) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return Config |
||
| 27 | */ |
||
| 28 | public static function random() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return Config |
||
| 35 | */ |
||
| 36 | public static function createUndefined() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return Config |
||
| 47 | */ |
||
| 48 | public static function createEnabled() |
||
| 56 | } |
||
| 57 |