whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
laravel-notification-channels
/
telegram
/
src
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/laravel-notification-channels/telegram/src/TelegramLocation.php
<?php namespace NotificationChannels\Telegram; use NotificationChannels\Telegram\Contracts\TelegramSenderContract; use NotificationChannels\Telegram\Exceptions\CouldNotSendNotification; use Psr\Http\Message\ResponseInterface; /** * Class TelegramLocation. */ class TelegramLocation extends TelegramBase implements TelegramSenderContract { /** * Telegram Location constructor. * * @param float|string $latitude * @param float|string $longitude */ public function __construct(float|string $latitude = '', float|string $longitude = '') { parent::__construct(); $this->latitude($latitude); $this->longitude($longitude); } /** * @param float|string $latitude * @param float|string $longitude * @return self */ public static function create(float|string $latitude = '', float|string $longitude = ''): self { return new self($latitude, $longitude); } /** * Location's latitude. * * @param float|string $latitude * @return $this */ public function latitude(float|string $latitude): self { $this->payload['latitude'] = $latitude; return $this; } /** * Location's longitude. * * @param float|string $longitude * @return $this */ public function longitude(float|string $longitude): self { $this->payload['longitude'] = $longitude; return $this; } /** * @return ResponseInterface|null * * @throws CouldNotSendNotification */ public function send(): ?ResponseInterface { return $this->telegram->sendLocation($this->toArray()); } }
Copyright ©2021 || Defacer Indonesia