1 | <?php |
||
12 | class PreCommitResponseStub |
||
13 | { |
||
14 | const PHPCS_STANDARD = 'PSR2'; |
||
15 | const FIX_YOUR_CODE = 'Fix your code'; |
||
16 | const GOOD_JOB = 'Good job'; |
||
17 | const MINIMUM_COVERAGE = 100.00; |
||
18 | |||
19 | /** |
||
20 | * @param bool $preCommit |
||
21 | * @param string $rightMessage |
||
22 | * @param string $errorMessage |
||
23 | * @param bool $composer |
||
24 | * @param bool $jsonLint |
||
25 | * @param bool $phpLint |
||
26 | * @param PhpMdResponse $pmdResponse |
||
27 | * @param PhpCsResponse $phpCsResponse |
||
28 | * @param PhpCsFixerResponse $phpCsFixerResponse |
||
29 | * @param PhpUnitResponse $phpUnitResponse |
||
30 | * @param PhpUnitStrictCoverageResponse $phpUnitStrictCoverageResponse |
||
31 | * |
||
32 | * @return PreCommitResponse |
||
33 | */ |
||
34 | public static function create( |
||
61 | |||
62 | /** |
||
63 | * @return PreCommitResponse |
||
64 | */ |
||
65 | public static function createAllEnabled() |
||
83 | } |
||
84 |