WellCommerce\Bundle\LayoutBundle\Factory\LayoutBoxFactory::create PHP Method

create() public method

public create ( ) : WellCommerce\Bundle\LayoutBundle\Entity\LayoutBoxInterface
return WellCommerce\Bundle\LayoutBundle\Entity\LayoutBoxInterface
    public function create() : LayoutBoxInterface
    {
        /** @var $box LayoutBoxInterface */
        $box = $this->init();
        $box->setBoxType($this->getDefaultLayoutBoxType());
        $box->setIdentifier('');
        $box->setSettings([]);
        return $box;
    }