Exemplo n.º 1
0
 /**
  * @return ProxyAdapterInterface
  */
 public function getAdapter()
 {
     if (!$this->adapter) {
         $client = new Client();
         $this->adapter = new Guzzle4Adapter($client);
         $this->adapter->setLogger($this->getLogger());
     }
     return $this->adapter;
 }