Exemplo n.º 1
0
 /**
  * Return the total number of items in the query result
  *
  * @return  int
  */
 public function count()
 {
     if ($this->count === null) {
         $this->count = $this->query->count();
     }
     return $this->count;
 }
Exemplo n.º 2
0
 /**
  * Count all results of this query
  *
  * @return  int
  */
 public function count()
 {
     return $this->query->count();
 }