1 | <?php |
||
4 | class Script |
||
5 | { |
||
6 | /** @var string */ |
||
7 | private $name; |
||
8 | /** @var string */ |
||
9 | private $command; |
||
10 | |||
11 | /** |
||
12 | * @param string $name |
||
13 | * @param string $command |
||
14 | */ |
||
15 | 2 | public function __construct($name, $command) |
|
20 | |||
21 | /** |
||
22 | * @return string |
||
23 | */ |
||
24 | 2 | public function getName() |
|
28 | |||
29 | /** |
||
30 | * @return string |
||
31 | */ |
||
32 | 2 | public function getCommand() |
|
36 | } |
||
37 |