Beispiel #1
0
 /**
  * @return array
  */
 protected function getData()
 {
     if (!$this->loaded) {
         $this->data = $this->parseCollection($this->options->all());
         $this->loaded = true;
     }
     return $this->data;
 }
Beispiel #2
0
 public function getAll(array $coloumns = array('*'))
 {
     return $this->query->all($coloumns);
 }