ContainerInteropDoctrineTest\EntityManagerFactoryTest::buildConnection PHP Метод

buildConnection() приватный Метод

private buildConnection ( ) : Doctrine\DBAL\Connection
Результат Doctrine\DBAL\Connection
    private function buildConnection()
    {
        $connection = $this->prophesize(Connection::class);
        $connection->getEventManager()->willReturn($this->prophesize(EventManager::class)->reveal());
        return $connection->reveal();
    }