. */ namespace Doctrine\Common\Persistence\Event; /** * Provides event arguments for the onClear event. * * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.doctrine-project.org * @since 2.2 * @author Roman Borschel * @author Benjamin Eberlei */ class OnClearEventArgs extends \Doctrine\Common\EventArgs { /** * @var ObjectManager */ private $objectManager; /** * @var string */ private $entityClass; /** * Constructor. * * @param ObjectManager $objectManager * @param string $entityClass Optional entity class */ public function __construct($objectManager, $entityClass = null) { $this->objectManager = $objectManager; $this->entityClass = $entityClass; } /** * Retrieve associated ObjectManager. * * @return ObjectManager */ public function getObjectManager() { return $this->objectManager; } /** * Name of the entity class that is cleared, or empty if all are cleared. * * @return string */ public function getEntityClass() { return $this->entityClass; } /** * Check if event clears all entities. * * @return bool */ public function clearsAllEntities() { return ($this->entityClass === null); } }