| 1 | <?php |
||
| 16 | class GitHubConfigRepository extends Repository |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * GitHubConfigRepository constructor. |
||
| 20 | * @param Repository $original |
||
| 21 | */ |
||
| 22 | public function __construct(Repository $original) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return array |
||
| 34 | */ |
||
| 35 | public function values(): array |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | public function getOrg(): string |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return string |
||
| 54 | */ |
||
| 55 | public function getRepo(): string |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return string |
||
| 62 | */ |
||
| 63 | public function getBranch(): string |
||
| 67 | } |