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

setIdentifier() public method

public setIdentifier ( string $identifier )
$identifier string
    public function setIdentifier(string $identifier)
    {
        $this->identifier = $identifier;
    }

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::setIdentifier