Doctrine\Tests\Models\ECommerce\ECommerceCategory::setParent PHP Метод

setParent() приватный Метод

private setParent ( ECommerceCategory $parent )
$parent ECommerceCategory
    private function setParent(ECommerceCategory $parent)
    {
        $this->parent = $parent;
    }

Usage Example

Пример #1
0
 public function addChild(ECommerceCategory $child)
 {
     $this->children[] = $child;
     $child->setParent($this);
 }