Exemplo n.º 1
0
 /**
  * Get the gateway implementation.
  *
  * @return \Illuminate\Remote\GatewayInterface
  *
  * @throws \RuntimeException
  */
 public function getGateway()
 {
     if (!$this->gateway->connected() && !$this->gateway->connect($this->username)) {
         throw new \RuntimeException("Unable to connect to remote server.");
     }
     return $this->gateway;
 }
Exemplo n.º 2
0
 /**
  * Get the gateway implementation.
  *
  * @return \Illuminate\Remote\GatewayInterface
  */
 public function getGateway()
 {
     if (!$this->gateway->connected()) {
         $this->gateway->connect($this->username);
     }
     return $this->gateway;
 }