1 | <?php declare(strict_types=1); |
||
11 | abstract class EnvironmentVariable extends AbstractResource implements EnvironmentVariableInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $id; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $name; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $value; |
||
27 | |||
28 | /** |
||
29 | * @var bool |
||
30 | */ |
||
31 | protected $public; |
||
32 | |||
33 | /** |
||
34 | * @var int |
||
35 | */ |
||
36 | protected $repository_id; |
||
37 | |||
38 | /** |
||
39 | * @return string |
||
40 | */ |
||
41 | public function id() : string |
||
45 | |||
46 | /** |
||
47 | * @return string |
||
48 | */ |
||
49 | public function name() : string |
||
53 | |||
54 | /** |
||
55 | * @return string |
||
56 | */ |
||
57 | public function value() : string |
||
61 | |||
62 | /** |
||
63 | * @return bool |
||
64 | */ |
||
65 | public function public() : bool |
||
69 | |||
70 | /** |
||
71 | * @return int |
||
72 | */ |
||
73 | public function repositoryId() : int |
||
77 | } |
||
78 |