1 | <?php |
||
7 | class PrePushTool implements CommandInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $remote; |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | private $url; |
||
17 | |||
18 | /** |
||
19 | * PrePushToolCommand constructor. |
||
20 | * |
||
21 | * @param string $remote |
||
22 | * @param string $url |
||
23 | */ |
||
24 | 3 | public function __construct($remote, $url) |
|
29 | |||
30 | /** |
||
31 | * @return string |
||
32 | */ |
||
33 | 3 | public function getRemote() |
|
37 | |||
38 | /** |
||
39 | * @return string |
||
40 | */ |
||
41 | 3 | public function getUrl() |
|
45 | } |
||
46 |