예제 #1
0
 /**
  * @ORM\PrePersist
  * @ORM\PreUpdate
  */
 public function preSave(LifecycleEventArgs $args)
 {
     $this->checkAmounts();
     parent::presave($args);
     $this->checkMustOccurrences();
 }
예제 #2
0
 /**
  * @ORM\PrePersist
  * @ORM\PreUpdate
  */
 public function preSave(LifecycleEventArgs $args)
 {
     $this->checkAmounts();
     parent::presave($args);
     $this->checkNumber($args);
 }