Ejemplo n.º 1
0
 /**
  * Add all models from a different Models collection
  *
  * @param Models $other
  */
 public function addAll(Models $other)
 {
     if ($other->count() > 0) {
         $this->models->addAll($other->models);
     }
     return $this;
 }
Ejemplo n.º 2
0
 /**
  * @return int
  */
 public function count()
 {
     return $this->models->count();
 }
Ejemplo n.º 3
0
 /**
  * @return int
  */
 public function count()
 {
     return $this->current->count();
 }