1 | <?php |
||
11 | class Export extends AbstractApi |
||
12 | { |
||
13 | /** @var string */ |
||
14 | protected $branch; |
||
15 | |||
16 | /** |
||
17 | * {@inheritdoc} |
||
18 | */ |
||
19 | public function execute() |
||
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | public function getBranch() |
||
43 | |||
44 | /** |
||
45 | * @param string $branch |
||
46 | * |
||
47 | * @return Export |
||
48 | */ |
||
49 | public function setBranch($branch) |
||
55 | } |
||
56 |