getRelation() public method

Get relation by model name
public getRelation ( string $modelName ) : Row | false
$modelName string
return Row | false
コード例 #1
0
ファイル: RowTest.php プロジェクト: dezvell/mm.local
 /**
  * @expectedException Bluz\Db\Exception\RelationNotFoundException
  */
 public function testGetRelationException()
 {
     $this->row->getRelation('wrongRelation');
 }