| 1 | <?php |
||
| 4 | class Support |
||
| 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 | 2 | public function __construct($type, $url) |
|
| 20 | |||
| 21 | /** |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | 2 | public function getType() |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | 2 | public function getUrl() |
|
| 36 | } |
||
| 37 |