| 1 | <?php declare(strict_types=1); |
||
| 18 | abstract class Files extends AbstractResource implements FilesInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var CodeOfConduct |
||
| 22 | */ |
||
| 23 | protected $code_of_conduct; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var Url |
||
| 27 | */ |
||
| 28 | protected $contributing; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var License |
||
| 32 | */ |
||
| 33 | protected $license; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @var Url |
||
| 37 | */ |
||
| 38 | protected $readme; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return CodeOfConduct |
||
| 42 | */ |
||
| 43 | public function codeOfConduct(): CodeOfConduct |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return Url |
||
| 50 | */ |
||
| 51 | public function contributing(): Url |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @return License |
||
| 58 | */ |
||
| 59 | public function license(): License |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @return Url |
||
| 66 | */ |
||
| 67 | public function readme(): Url |
||
| 71 | } |
||
| 72 |