Thruway\Registration::getId PHP Метод

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

Get registration ID
public getId ( ) : mixed
Результат mixed
    public function getId()
    {
        return $this->id;
    }

Usage Example

Пример #1
0
 /**
  * @param CallMessage $msg
  * @param Registration $registration
  * @return static
  */
 static function createMessageFrom(CallMessage $msg, Registration $registration)
 {
     $requestId = Session::getUniqueId();
     $details = new \stdClass();
     return new static($requestId, $registration->getId(), $details, $msg->getArguments(), $msg->getArgumentsKw());
 }
All Usage Examples Of Thruway\Registration::getId