Renaming PhpDriver to PHPDriver
This commit is contained in:
parent
023f06a420
commit
6d29f05d3a
2 changed files with 4 additions and 4 deletions
|
@ -30,7 +30,7 @@ use Doctrine\Common\Cache\ArrayCache,
|
||||||
Doctrine\ORM\Mapping\Driver\AbstractFileDriver;
|
Doctrine\ORM\Mapping\Driver\AbstractFileDriver;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The PhpDriver includes php files which just populate ClassMetadataInfo
|
* The PHPDriver includes php files which just populate ClassMetadataInfo
|
||||||
* instances with plain php code
|
* instances with plain php code
|
||||||
*
|
*
|
||||||
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
@ -43,7 +43,7 @@ use Doctrine\Common\Cache\ArrayCache,
|
||||||
* @author Roman Borschel <roman@code-factory.org>
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
* @todo Rename: PHPDriver
|
* @todo Rename: PHPDriver
|
||||||
*/
|
*/
|
||||||
class PhpDriver extends AbstractFileDriver
|
class PHPDriver extends AbstractFileDriver
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
|
@ -3,7 +3,7 @@
|
||||||
namespace Doctrine\Tests\ORM\Mapping;
|
namespace Doctrine\Tests\ORM\Mapping;
|
||||||
|
|
||||||
use Doctrine\ORM\Mapping\ClassMetadata,
|
use Doctrine\ORM\Mapping\ClassMetadata,
|
||||||
Doctrine\ORM\Mapping\Driver\PhpDriver,
|
Doctrine\ORM\Mapping\Driver\PHPDriver,
|
||||||
Doctrine\ORM\Tools\Export\ClassMetadataExporter;
|
Doctrine\ORM\Tools\Export\ClassMetadataExporter;
|
||||||
|
|
||||||
require_once __DIR__ . '/../../TestInit.php';
|
require_once __DIR__ . '/../../TestInit.php';
|
||||||
|
@ -26,6 +26,6 @@ class PhpMappingDriverTest extends AbstractMappingDriverTest
|
||||||
$exporter->export();
|
$exporter->export();
|
||||||
*/
|
*/
|
||||||
|
|
||||||
return new PhpDriver($path);
|
return new PHPDriver($path);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue