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

setSettings() public method

public setSettings ( array $settings )
$settings array
    public function setSettings(array $settings)
    {
        $this->settings = $settings;
    }

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