コード例 #1
0
ファイル: SMS.php プロジェクト: makallio85/php-sms
 /**
  * Perform actual sending.
  *
  * @return bool
  * @noinspection
  */
 public function send()
 {
     /** @noinspection PhpUndefinedMethodInspection */
     $this->Gateway->validate($this);
     /** @noinspection PhpUndefinedMethodInspection */
     return $this->Gateway->send($this);
 }