JEMBOT MAWOT Bypass Shell
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Event;
use Doctrine\Common\EventArgs;
use Doctrine\ORM\EntityManagerInterface;
/**
 * Provides event arguments for the preFlush event.
 *
 * @link        www.doctrine-project.com
 */
class PreFlushEventArgs extends EventArgs
{
    /** @var EntityManagerInterface */
    private $em;
    public function __construct(EntityManagerInterface $em)
    {
        $this->em = $em;
    }
    /**
     * @return EntityManagerInterface
     */
    public function getEntityManager()
    {
        return $this->em;
    }
}
xxxxx1.0, XXX xxxx