| 1 | <?php |
||
| 4 | class SuggestedPackage implements ConfigurationItemInterface |
||
| 5 | { |
||
| 6 | /** @var string */ |
||
| 7 | private $name; |
||
| 8 | /** @var string */ |
||
| 9 | private $description; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param string $name |
||
| 13 | * @param string $description |
||
| 14 | */ |
||
| 15 | public function __construct($name, $description) |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | public function getName() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public function getDescription() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function getItemId() |
||
| 44 | } |
||
| 45 |