示例#1
0
文件: Model.php 项目: titon/model
 /**
  * {@inheritdoc}
  */
 public function setRepository(Repository $repository)
 {
     $repository->on('model', $this);
     foreach ($this->getRelations() as $relation) {
         $repository->on('relation', $relation);
     }
     $this->_repository = $repository;
     return $this;
 }