WellCommerce\Bundle\LayoutBundle\Entity\LayoutBox::setBoxType PHP Méthode

setBoxType() public méthode

public setBoxType ( string $boxType )
$boxType string
    public function setBoxType(string $boxType)
    {
        $this->boxType = $boxType;
    }

Usage Example

 public function create() : LayoutBoxInterface
 {
     $box = new LayoutBox();
     $box->setBoxType('');
     $box->setIdentifier('');
     $box->setSettings([]);
     return $box;
 }
All Usage Examples Of WellCommerce\Bundle\LayoutBundle\Entity\LayoutBox::setBoxType