1 | <?php |
||
18 | class UpdateOptions extends ByebyeOptions |
||
19 | { |
||
20 | /** |
||
21 | * Default description URL string (with UPnP description for root device) |
||
22 | */ |
||
23 | const DEFAULT_DESCRIPTION_URL_STRING = 'http://127.0.0.1:80/description.xml'; |
||
24 | |||
25 | /** |
||
26 | * @var UriInterface |
||
27 | */ |
||
28 | protected $descriptionUrl; |
||
29 | |||
30 | /** |
||
31 | * Get description URL |
||
32 | * |
||
33 | * @return UriInterface |
||
34 | */ |
||
35 | public function getDescriptionUrl() |
||
43 | |||
44 | /** |
||
45 | * Set description URL |
||
46 | * |
||
47 | * @param UriInterface $descriptionUrl |
||
48 | * |
||
49 | * @return $this |
||
50 | */ |
||
51 | public function setDescriptionUrl(UriInterface $descriptionUrl) |
||
56 | } |
||
57 |