Skip to content

Instantly share code, notes, and snippets.

@Ziumin
Last active December 31, 2015 18:39
Show Gist options
  • Save Ziumin/8028836 to your computer and use it in GitHub Desktop.
Save Ziumin/8028836 to your computer and use it in GitHub Desktop.
<?php
....
public function prePersist(LifecycleEventArgs $args)
{
$entity = $args->getEntity();
if (method_exists($entity, 'setCreatedBy') {
$user = $this->container->get('security.context')->getToken()->getUser();
$entity->setCreatedBy($user);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment