1 | <?php |
||
16 | class CheckoutIndexCommand implements Command { |
||
17 | /** |
||
18 | * Prefix. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $prefix; |
||
23 | |||
24 | /** |
||
25 | * Initialiser. |
||
26 | * |
||
27 | * @param string $prefix |
||
28 | */ |
||
29 | 1 | public function __construct($prefix) { |
|
32 | |||
33 | /** |
||
34 | * @inheritdoc Command |
||
35 | */ |
||
36 | 1 | public function getCommandLine() { |
|
43 | |||
44 | /** |
||
45 | * Get the prefix. |
||
46 | * |
||
47 | * @return string |
||
48 | * |
||
49 | * @codeCoverageIgnore |
||
50 | */ |
||
51 | public function getPrefix() { |
||
54 | |||
55 | /** |
||
56 | * Set the prefix. |
||
57 | * |
||
58 | * @param string $prefix |
||
59 | * |
||
60 | * @codeCoverageIgnore |
||
61 | */ |
||
62 | public function setPrefix($prefix) { |
||
65 | } |
||
66 |