Beispiel #1
0
 public function create(BrandCreateEvent $event)
 {
     $brand = new BrandModel();
     $brand->setVisible($event->getVisible())->setLocale($event->getLocale())->setTitle($event->getTitle())->save();
     $event->setBrand($brand);
 }