1 | <?php declare(strict_types=1); |
||
16 | abstract class Rb extends AbstractResource implements RbInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $label; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $ref; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $sha; |
||
32 | |||
33 | /** |
||
34 | * @var User |
||
35 | */ |
||
36 | protected $user; |
||
37 | |||
38 | /** |
||
39 | * @var Repository |
||
40 | */ |
||
41 | protected $repo; |
||
42 | |||
43 | /** |
||
44 | * @return string |
||
45 | */ |
||
46 | public function label(): string |
||
50 | |||
51 | /** |
||
52 | * @return string |
||
53 | */ |
||
54 | public function ref(): string |
||
58 | |||
59 | /** |
||
60 | * @return string |
||
61 | */ |
||
62 | public function sha(): string |
||
66 | |||
67 | /** |
||
68 | * @return User |
||
69 | */ |
||
70 | public function user(): User |
||
74 | |||
75 | /** |
||
76 | * @return Repository |
||
77 | */ |
||
78 | public function repo(): Repository |
||
82 | } |
||
83 |