コード例 #1
0
 /**
  * @ORM\PrePersist
  * @ORM\PreUpdate
  */
 public function preSave(LifecycleEventArgs $args)
 {
     $this->checkAmounts();
     parent::presave($args);
     $this->checkMustOccurrences();
 }
コード例 #2
0
ファイル: Invoice.php プロジェクト: siwapp/siwapp-sf3
 /**
  * @ORM\PrePersist
  * @ORM\PreUpdate
  */
 public function preSave(LifecycleEventArgs $args)
 {
     $this->checkAmounts();
     parent::presave($args);
     $this->checkNumber($args);
 }