getRelation() 공개 메소드

Get relation by model name
public getRelation ( string $modelName ) : Row | false
$modelName string
리턴 Row | false
예제 #1
0
 /**
  * @expectedException Bluz\Db\Exception\RelationNotFoundException
  */
 public function testGetRelationException()
 {
     $this->row->getRelation('wrongRelation');
 }