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