예제 #1
0
파일: Collection.php 프로젝트: respect/data
 public function setNext(Collection $collection)
 {
     $collection->setParent($this);
     $collection->setMapper($this->mapper);
     $this->next = $collection;
 }
예제 #2
0
 public function registerCollection($alias, Collection $collection)
 {
     $collection->setMapper($this);
     $this->collections[$alias] = $collection;
 }