Почему объект Doctrine \ ORM \ Configuration «DoctrineProxies» содержит Вселенную?
В моем ORM-коде у меня есть Entity с полем, оштрафованным так: //part of entity class Item: /** @Column(name="product_id", type="integer") */ private $productId; Затем я выполнил этот код: //3 lines ~straight out of Doctrine configuration to get EntityManager include 'config/doctrine-config.php'; $config = Setup::createAnnotationMetadataConfiguration($paths, $isDevMode); $em = EntityManager::create($dbParams, $config); //my own code to retrieve an entity instance: […]