예제 #1
0
파일: Models.php 프로젝트: harp-orm/harp
 /**
  * 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;
 }
예제 #2
0
파일: Update.php 프로젝트: harp-orm/harp
 public function executeModels(Models $models)
 {
     if ($models->count() == 1) {
         $this->model($models->getFirst());
     } else {
         $this->models($models);
     }
     $this->execute();
 }
예제 #3
0
파일: LinkMany.php 프로젝트: harp-orm/harp
 /**
  * @return int
  */
 public function count()
 {
     return $this->current->count();
 }
예제 #4
0
파일: Save.php 프로젝트: harp-orm/harp
 /**
  * @return int
  */
 public function count()
 {
     return $this->models->count();
 }