Exemplo n.º 1
0
 public function getConsumer()
 {
     if ($this->consumer === false) {
         $consumer = $this->marketplaceClient->getConsumer();
         if (!empty($consumer)) {
             $this->consumer = $consumer;
         } else {
             $this->consumer = array();
         }
     }
     return $this->consumer;
 }