Skip to content

Instantly share code, notes, and snippets.

@bakura10
Created September 15, 2012 20:09
Show Gist options
  • Save bakura10/3729550 to your computer and use it in GitHub Desktop.
Save bakura10/3729550 to your computer and use it in GitHub Desktop.
<?php
// Par défaut, Doctrine t'offre ces différents events :
// PostLoad, PostPersist, PostRemove, PostUpdate
// PrePersist, PreRemove, PreUpdate
/**
* @ORM\Entity
* @ORM\HasLifecycleCallbacks // <=== Active le mécanisme d'évènements
*/
class Base
{
/**
* @ORM\PostLoad
*/
public function updateResources()
{
// Du traitemement
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment