| 1 | <?php declare(strict_types=1); |
||
| 7 | abstract class EmptyMeta implements MetaInterface, EmptyResourceInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @return bool |
||
| 11 | */ |
||
| 12 | 2 | public function verifiablePasswordAuthentication(): bool |
|
| 16 | |||
| 17 | /** |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | 2 | public function githubServicesSha(): string |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return array |
||
| 27 | */ |
||
| 28 | 2 | public function hooks(): array |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @return array |
||
| 34 | */ |
||
| 35 | public function git(): array |
||
| 38 | 2 | ||
| 39 | /** |
||
| 40 | * @return array |
||
| 41 | */ |
||
| 42 | public function pages(): array |
||
| 45 | |||
| 46 | 2 | /** |
|
| 47 | * @return array |
||
| 48 | */ |
||
| 49 | public function importer(): array |
||
| 52 | } |
||
| 53 |