11 lines
265 B
PHP
11 lines
265 B
PHP
<?php
|
|
class RelationTestChild extends RelationTest
|
|
{
|
|
public function setUp()
|
|
{
|
|
$this->hasOne('RelationTest as Parent', 'RelationTestChild.child_id');
|
|
|
|
$this->ownsMany('RelationTestChild as Children', 'RelationTestChild.child_id');
|
|
}
|
|
}
|