1 | <?php |
||
8 | final class ConfigurationDataResponseStub |
||
9 | { |
||
10 | const PHPCS_STANDARD = 'PSR2'; |
||
11 | const FIX_YOUR_CODE = 'Fix your code'; |
||
12 | const GOOD_JOB = 'Good job'; |
||
13 | |||
14 | /** |
||
15 | * @param bool $preCommit |
||
16 | * @param string|null $rightMessage |
||
17 | * @param string|null $errorMessage |
||
18 | * @param bool $composer |
||
19 | * @param bool $jsonLint |
||
20 | * @param bool $phpLint |
||
21 | * @param bool $phpMd |
||
22 | * @param bool $phpCs |
||
23 | * @param string|null $phpCsStandard |
||
24 | * @param bool $phpCsFixer |
||
25 | * @param bool $phpCsFixerPsr0 |
||
26 | * @param bool $phpCsFixerPsr1 |
||
27 | * @param bool $phpCsFixerPsr2 |
||
28 | * @param bool $phpCsFixerSymfony |
||
29 | * @param bool $phpunit |
||
30 | * @param bool $phpunitRandomMode |
||
31 | * @param string|null $phpunitOptions |
||
32 | * @param bool $commitMsg |
||
33 | * @param string|null $regularExpression |
||
34 | * @param bool $prePush |
||
35 | * @param bool $prePushPhpUnit |
||
36 | * @param bool $prePushPhpUnitRandom |
||
37 | * @param string|null $prePushPhpUnitOptions |
||
38 | * @param string $prePushRightMessage |
||
39 | * @param string $prePushErrorMessage |
||
40 | * |
||
41 | * @return ConfigurationDataResponse |
||
42 | */ |
||
43 | public static function create( |
||
98 | |||
99 | /** |
||
100 | * @return ConfigurationDataResponse |
||
101 | */ |
||
102 | public static function createAllEnabled() |
||
134 | |||
135 | /** |
||
136 | * @param bool $preCommit |
||
137 | * @param bool $commitMsg |
||
138 | * @param bool $prePush |
||
139 | * |
||
140 | * @return ConfigurationDataResponse |
||
141 | */ |
||
142 | public static function createCustom($preCommit, $commitMsg, $prePush) |
||
172 | } |
||
173 |