Thruway\Transport\TransportInterface::getTransportDetails PHP Метод

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

public getTransportDetails ( ) : mixed
Результат mixed
    public function getTransportDetails();

Usage Example

Пример #1
0
 /**
  * Handle close transport
  *
  * @param \Thruway\Transport\TransportInterface $transport
  */
 public function onClose(TransportInterface $transport)
 {
     Logger::debug($this, "onClose from " . json_encode($transport->getTransportDetails()));
     /* @var  $session \Thruway\Session */
     $session = $this->sessions[$transport];
     $session->onClose();
     $this->sessions->detach($transport);
 }
All Usage Examples Of Thruway\Transport\TransportInterface::getTransportDetails