proxyFactory = EntityManagerFactory::getEntityManager([])->getProxyFactory(); } public function benchCmsUserInstantiation() { for ($i = 0; $i < 100000; ++$i) { $this->proxyFactory->getProxy(CmsUser::class, ['id' => $i]); } } public function benchCmsEmployeeInstantiation() { for ($i = 0; $i < 100000; ++$i) { $this->proxyFactory->getProxy(CmsEmployee::class, ['id' => $i]); } } }