Renaming PhpDriver to PHPDriver
This commit is contained in:
parent
023f06a420
commit
6d29f05d3a
@ -30,7 +30,7 @@ use Doctrine\Common\Cache\ArrayCache,
|
||||
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
|
||||
*
|
||||
* @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>
|
||||
* @todo Rename: PHPDriver
|
||||
*/
|
||||
class PhpDriver extends AbstractFileDriver
|
||||
class PHPDriver extends AbstractFileDriver
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
@ -3,7 +3,7 @@
|
||||
namespace Doctrine\Tests\ORM\Mapping;
|
||||
|
||||
use Doctrine\ORM\Mapping\ClassMetadata,
|
||||
Doctrine\ORM\Mapping\Driver\PhpDriver,
|
||||
Doctrine\ORM\Mapping\Driver\PHPDriver,
|
||||
Doctrine\ORM\Tools\Export\ClassMetadataExporter;
|
||||
|
||||
require_once __DIR__ . '/../../TestInit.php';
|
||||
@ -26,6 +26,6 @@ class PhpMappingDriverTest extends AbstractMappingDriverTest
|
||||
$exporter->export();
|
||||
*/
|
||||
|
||||
return new PhpDriver($path);
|
||||
return new PHPDriver($path);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user