1 | <?php |
||
4 | class Script implements ConfigurationItemInterface |
||
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 | public function __construct($name, $command) |
||
20 | |||
21 | /** |
||
22 | * @return string |
||
23 | */ |
||
24 | public function getName() |
||
28 | |||
29 | /** |
||
30 | * @return string |
||
31 | */ |
||
32 | public function getCommand() |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function getItemId() |
||
44 | } |
||
45 |