1 | <?php |
||
18 | class RemoteAddCommand implements Command { |
||
19 | /** |
||
20 | * Remote. |
||
21 | * |
||
22 | * @var GitRemote |
||
23 | */ |
||
24 | protected $remote; |
||
25 | |||
26 | /** |
||
27 | * Initialiser. |
||
28 | * |
||
29 | * @param GitRemote $remote |
||
30 | */ |
||
31 | 1 | public function __construct(GitRemote $remote) { |
|
34 | |||
35 | /** |
||
36 | * @inheritdoc Command |
||
37 | */ |
||
38 | 1 | public function getCommandLine() { |
|
46 | |||
47 | /** |
||
48 | * Get the remote. |
||
49 | * |
||
50 | * @return GitRemote |
||
51 | * |
||
52 | * @codeCoverageIgnore |
||
53 | */ |
||
54 | public function getRemote() { |
||
57 | |||
58 | /** |
||
59 | * Set the remote. |
||
60 | * |
||
61 | * @param GitRemote $remote |
||
62 | * |
||
63 | * @codeCoverageIgnore |
||
64 | */ |
||
65 | public function setRemote($remote) { |
||
68 | } |
||
69 |