Correcting import that was colliding with another already imported User
type
This commit is contained in:
parent
4daf383e4f
commit
df8be6f31e
1 changed files with 2 additions and 3 deletions
|
@ -1,10 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Doctrine\Tests\ORM\Mapping;
|
namespace Doctrine\Tests\ORM\Mapping;
|
||||||
|
|
||||||
use Doctrine\ORM\Mapping\DefaultQuoteStrategy;
|
use Doctrine\ORM\Mapping\DefaultQuoteStrategy;
|
||||||
use Doctrine\Tests\Models\NonPublicSchemaJoins\User;
|
use Doctrine\Tests\Models\NonPublicSchemaJoins\User as NonPublicSchemaUser;
|
||||||
use Doctrine\Tests\OrmTestCase;
|
use Doctrine\Tests\OrmTestCase;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,7 +20,7 @@ class DefaultQuoteStrategyTest extends OrmTestCase
|
||||||
public function testGetJoinTableName()
|
public function testGetJoinTableName()
|
||||||
{
|
{
|
||||||
$em = $this->_getTestEntityManager();
|
$em = $this->_getTestEntityManager();
|
||||||
$metadata = $em->getClassMetadata(User::CLASSNAME);
|
$metadata = $em->getClassMetadata(NonPublicSchemaUser::CLASSNAME);
|
||||||
/* @var $platform \Doctrine\DBAL\Platforms\AbstractPlatform */
|
/* @var $platform \Doctrine\DBAL\Platforms\AbstractPlatform */
|
||||||
$strategy = new DefaultQuoteStrategy();
|
$strategy = new DefaultQuoteStrategy();
|
||||||
$platform = $this->getMockForAbstractClass('Doctrine\DBAL\Platforms\AbstractPlatform');
|
$platform = $this->getMockForAbstractClass('Doctrine\DBAL\Platforms\AbstractPlatform');
|
||||||
|
|
Loading…
Add table
Reference in a new issue