WellCommerce\Bundle\LayoutBundle\Entity\LayoutBox::setBoxType PHP Method

setBoxType() public method

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

Usage Example

コード例 #1
0
 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