whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
craftsys
/
msg91-php
/
src
/
Support
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/craftsys/msg91-php/src/Support/Service.php
<?php namespace Craftsys\Msg91\Support; use Craftsys\Msg91\Contracts\Options; use GuzzleHttp\Client as HttpClient; abstract class Service { /** * Options for Request * @var \Craftsys\Msg91\Contracts\Options */ protected $options; /** * The msg91 client instance * @var \Craftsys\Msg91\Client */ protected $client; /** * Options for Request */ public function getOptions(): Options { return $this->options; } /** * Get the http client * @return \GuzzleHttp\Client */ protected function getHttpClient() { return $this->client->getHttpClient() ?: new HttpClient(); } /** * Set the receipient(s) * @param int|null $mobile * @return $this */ public function to($mobile = null) { $this->getOptions()->to($mobile); return $this; } /** * Set the sender * @param int|null $sender_id * @return $this */ public function from($sender_id = null) { $this->getOptions()->from($sender_id); return $this; } /** * Set the content of message * @param string|null $message * @return $this */ public function message($message = '') { $this->getOptions()->message($message); return $this; } /** * Pass any other options to the message * @param mixed $options * @return $this; */ public function options($options = null) { $this->getOptions()->mergeWith($options); return $this; } /** * Create a new instance of given request * @param string $request - Request class name * @return \Craftsys\Msg91\Response */ protected function sendRequest(string $request) { return (new $request($this->getHttpClient(), $this->getOptions()))->handle(); } }
Copyright ©2021 || Defacer Indonesia