| 1 | <?php declare(strict_types=1); |
||
| 7 | abstract class EmptyFiles implements FilesInterface, EmptyResourceInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @return CodeOfConduct |
||
| 11 | */ |
||
| 12 | 2 | public function codeOfConduct(): CodeOfConduct |
|
| 16 | |||
| 17 | /** |
||
| 18 | * @return Url |
||
| 19 | */ |
||
| 20 | 2 | public function contributing(): Url |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return License |
||
| 27 | */ |
||
| 28 | 2 | public function license(): License |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return Url |
||
| 35 | */ |
||
| 36 | 2 | public function readme(): Url |
|
| 40 | } |
||
| 41 |