コード例 #1
0
ファイル: Location.php プロジェクト: steelice/TelegramBot
 protected function __construct(array $message)
 {
     parent::__construct($message);
     $this->lat = $message['location']['latitude'];
     $this->lng = $message['location']['longitude'];
 }