コード例 #1
0
ファイル: AuthTicket.php プロジェクト: jaspervdm/pogoapi-php
 /**
  * @return ProtoAuthTicket
  */
 public function toProto()
 {
     $ticket = new ProtoAuthTicket();
     $ticket->setStart($this->start);
     $ticket->setExpireTimestampMs($this->expire);
     $ticket->setEnd($this->end);
     return $ticket;
 }