Removing Doctrine\ORM\Mapping\Driver\Driver interface
Interface has been moved to Doctrine\Common\Persistence\Mapping\Driver\MappingDriver
This commit is contained in:
parent
905acf9176
commit
e9e36dcf32
@ -20,7 +20,6 @@
|
|||||||
namespace Doctrine\ORM\Mapping\Driver;
|
namespace Doctrine\ORM\Mapping\Driver;
|
||||||
|
|
||||||
use Doctrine\Common\Persistence\Mapping\Driver\FileDriver;
|
use Doctrine\Common\Persistence\Mapping\Driver\FileDriver;
|
||||||
use Doctrine\Common\Persistence\Mapping\Driver\FileLocator;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base driver for file-based metadata drivers.
|
* Base driver for file-based metadata drivers.
|
||||||
@ -38,6 +37,6 @@ use Doctrine\Common\Persistence\Mapping\Driver\FileLocator;
|
|||||||
* @author Jonathan H. Wage <jonwage@gmail.com>
|
* @author Jonathan H. Wage <jonwage@gmail.com>
|
||||||
* @author Roman Borschel <roman@code-factory.org>
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
*/
|
*/
|
||||||
abstract class AbstractFileDriver extends FileDriver implements Driver
|
abstract class AbstractFileDriver extends FileDriver
|
||||||
{
|
{
|
||||||
}
|
}
|
@ -35,7 +35,7 @@ use Doctrine\Common\Annotations\AnnotationReader,
|
|||||||
* @author Jonathan H. Wage <jonwage@gmail.com>
|
* @author Jonathan H. Wage <jonwage@gmail.com>
|
||||||
* @author Roman Borschel <roman@code-factory.org>
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
*/
|
*/
|
||||||
class AnnotationDriver extends AbstractAnnotationDriver implements Driver
|
class AnnotationDriver extends AbstractAnnotationDriver
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
|
@ -21,6 +21,7 @@ namespace Doctrine\ORM\Mapping\Driver;
|
|||||||
|
|
||||||
use Doctrine\DBAL\Schema\AbstractSchemaManager,
|
use Doctrine\DBAL\Schema\AbstractSchemaManager,
|
||||||
Doctrine\DBAL\Schema\SchemaException,
|
Doctrine\DBAL\Schema\SchemaException,
|
||||||
|
Doctrine\Common\Persistence\Mapping\Driver\MappingDriver,
|
||||||
Doctrine\Common\Persistence\Mapping\ClassMetadata,
|
Doctrine\Common\Persistence\Mapping\ClassMetadata,
|
||||||
Doctrine\ORM\Mapping\ClassMetadataInfo,
|
Doctrine\ORM\Mapping\ClassMetadataInfo,
|
||||||
Doctrine\Common\Util\Inflector;
|
Doctrine\Common\Util\Inflector;
|
||||||
@ -35,7 +36,7 @@ use Doctrine\DBAL\Schema\AbstractSchemaManager,
|
|||||||
* @author Jonathan Wage <jonwage@gmail.com>
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
*/
|
*/
|
||||||
class DatabaseDriver implements Driver
|
class DatabaseDriver implements MappingDriver
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @var AbstractSchemaManager
|
* @var AbstractSchemaManager
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
* This software consists of voluntary contributions made by many individuals
|
|
||||||
* and is licensed under the MIT license. For more information, see
|
|
||||||
* <http://www.doctrine-project.org>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Doctrine\ORM\Mapping\Driver;
|
|
||||||
|
|
||||||
use Doctrine\Common\Persistence\Mapping\Driver\MappingDriver;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Contract for metadata drivers.
|
|
||||||
*
|
|
||||||
* @since 2.0
|
|
||||||
* @author Jonathan H. Wage <jonwage@gmail.com>
|
|
||||||
* @todo Rename: MetadataDriver or MappingDriver
|
|
||||||
*/
|
|
||||||
interface Driver extends MappingDriver
|
|
||||||
{
|
|
||||||
}
|
|
@ -20,7 +20,8 @@
|
|||||||
namespace Doctrine\ORM\Mapping\Driver;
|
namespace Doctrine\ORM\Mapping\Driver;
|
||||||
|
|
||||||
use Doctrine\Common\Persistence\Mapping\ClassMetadata,
|
use Doctrine\Common\Persistence\Mapping\ClassMetadata,
|
||||||
Doctrine\ORM\Mapping\MappingException;
|
Doctrine\Common\Persistence\Mapping\Driver\MappingDriver,
|
||||||
|
Doctrine\ORM\Mapping\MappingException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The StaticPHPDriver calls a static loadMetadata() method on your entity
|
* The StaticPHPDriver calls a static loadMetadata() method on your entity
|
||||||
@ -34,7 +35,7 @@ use Doctrine\Common\Persistence\Mapping\ClassMetadata,
|
|||||||
* @author Jonathan H. Wage <jonwage@gmail.com>
|
* @author Jonathan H. Wage <jonwage@gmail.com>
|
||||||
* @author Roman Borschel <roman@code-factory.org>
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
*/
|
*/
|
||||||
class StaticPHPDriver implements Driver
|
class StaticPHPDriver implements MappingDriver
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Paths of entity directories.
|
* Paths of entity directories.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user