| 1 | <?php declare(strict_types=1); |
||
| 7 | abstract class EmptySettings implements SettingsInterface, EmptyResourceInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @return bool |
||
| 11 | */ |
||
| 12 | 2 | public function buildsOnlyWithTravisYml(): bool |
|
| 16 | |||
| 17 | /** |
||
| 18 | * @return bool |
||
| 19 | */ |
||
| 20 | 2 | public function buildPushes(): bool |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return bool |
||
| 27 | */ |
||
| 28 | 2 | public function buildPullRequests(): bool |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return int |
||
| 35 | */ |
||
| 36 | 2 | public function maximumNumberOfBuilds(): int |
|
| 40 | } |
||
| 41 |