Commit 6d29f05d authored by Jonathan H. Wage's avatar Jonathan H. Wage

Renaming PhpDriver to PHPDriver

parent 023f06a4
...@@ -30,7 +30,7 @@ use Doctrine\Common\Cache\ArrayCache, ...@@ -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, ...@@ -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 @@ ...@@ -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 ...@@ -26,6 +26,6 @@ class PhpMappingDriverTest extends AbstractMappingDriverTest
$exporter->export(); $exporter->export();
*/ */
return new PhpDriver($path); return new PHPDriver($path);
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment