Skip to content

Instantly share code, notes, and snippets.

@jp1987
Created April 26, 2013 08:18
Show Gist options
  • Save jp1987/5465712 to your computer and use it in GitHub Desktop.
Save jp1987/5465712 to your computer and use it in GitHub Desktop.
/**
* @ORM\PreUpdate
* @return void
*/
public function preUpdate() {
$this->setChangedDate(new \DateTime());
}
/**
* @ORM\PrePersist
* @return void
*/
public function prePersist() {
$this->setCreationDate(new \DateTime());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment