WellCommerce\Bundle\CategoryBundle\Entity\Category::addChild PHP Method

addChild() public method

public addChild ( WellCommerce\Bundle\CategoryBundle\Entity\CategoryInterface $child )
$child WellCommerce\Bundle\CategoryBundle\Entity\CategoryInterface
    public function addChild(CategoryInterface $child)
    {
        $this->children[] = $child;
        $child->setParent($this);
    }