getUri() публичный Метод

Get the URI for this stream.
public getUri ( ) : string
Результат string
Пример #1
0
 /**
  * Play a stream on this controller.
  *
  * @param Stream $stream The Stream object to play
  *
  * @return static
  */
 public function useStream(Stream $stream)
 {
     $this->soap("AVTransport", "SetAVTransportURI", ["CurrentURI" => $stream->getUri(), "CurrentURIMetaData" => $stream->getMetaData()]);
     return $this;
 }