本文整理汇总了PHP中Family::setFather方法的典型用法代码示例。如果您正苦于以下问题:PHP Family::setFather方法的具体用法?PHP Family::setFather怎么用?PHP Family::setFather使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Family
的用法示例。
在下文中一共展示了Family::setFather方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testExportInsideValidateMethod_ComposedClass
public function testExportInsideValidateMethod_ComposedClass()
{
$f = new Family();
$f->setFather(new Person("Pa", 46));
$f->setMother(new Person("Ma", 40));
$out = $this->familyValidator->validate($f);
$this->assertEquals("Pa-Ma", $out);
}
示例2: setUp
public function setUp()
{
$this->person = new Person("fabs", 35);
$this->localizedPerson = new LocalizedPerson("fabs", 35, "Rue De La Roquette");
$this->noGetEntity = new NoGetters("laurent");
$family = new Family();
$family->setFather(new Person("Pa", 50));
$family->setMother(new Person("Ma", 48));
$this->family = $family;
}