1 | <?php |
||
9 | class Variables extends Controller |
||
10 | { |
||
11 | private const ENDPOINT = '/v1-alpha/variables'; |
||
12 | |||
13 | 1 | public function create(Variable $variable): Variable |
|
23 | |||
24 | 1 | public function update(Variable $variable): Variable |
|
35 | |||
36 | 1 | public function delete(Variable $variable): bool |
|
41 | |||
42 | /** |
||
43 | * @return Collections\Variables|Variable[] |
||
44 | */ |
||
45 | 1 | public function fetch(): Collections\Variables |
|
54 | |||
55 | 2 | public function fetchOne(string $orderBy = null, string $order = self::ORDER_BY_ASC): ? Variable |
|
66 | } |
||
67 |