Skip to content

Instantly share code, notes, and snippets.

@ubermuda
Created May 19, 2009 10:03
Show Gist options
  • Select an option

  • Save ubermuda/114023 to your computer and use it in GitHub Desktop.

Select an option

Save ubermuda/114023 to your computer and use it in GitHub Desktop.
<?php
public function disableVersionning()
{
foreach($this->getListener() as $key => $listener)
{
if ($listener instanceof Doctrine_AuditLog_Listener)
{
$this->getListener()->remove($key);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment