setSslEnabled() public method

Deprecation: To be removed in 3.0
public setSslEnabled ( boolean $sslEnabled ) : RestClient
$sslEnabled boolean
return RestClient
Exemplo n.º 1
0
Arquivo: Mailgun.php Projeto: lhas/pep
 /**
  * @param boolean $sslEnabled
  *
  * @return Mailgun
  */
 public function setSslEnabled($sslEnabled)
 {
     $this->restClient->setSslEnabled($sslEnabled);
     return $this;
 }