Removed link to www.doctrine-project.org from doc blocks

parent 94ba9d74
<?php <?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>.
*/
use Doctrine\DBAL\Tools\Console\ConsoleRunner; use Doctrine\DBAL\Tools\Console\ConsoleRunner;
use Symfony\Component\Console\Helper\HelperSet; use Symfony\Component\Console\Helper\HelperSet;
......
...@@ -34,8 +34,6 @@ use function key; ...@@ -34,8 +34,6 @@ use function key;
* A wrapper around a Doctrine\DBAL\Driver\Connection that adds features like * A wrapper around a Doctrine\DBAL\Driver\Connection that adds features like
* events, transaction isolation levels, configuration, emulated transaction nesting, * events, transaction isolation levels, configuration, emulated transaction nesting,
* lazy connecting and more. * lazy connecting and more.
*
* @link www.doctrine-project.org
*/ */
class Connection implements DriverConnection class Connection implements DriverConnection
{ {
......
...@@ -2,9 +2,6 @@ ...@@ -2,9 +2,6 @@
namespace Doctrine\DBAL; namespace Doctrine\DBAL;
/**
* @link www.doctrine-project.org
*/
class ConnectionException extends DBALException class ConnectionException extends DBALException
{ {
/** /**
......
...@@ -9,8 +9,6 @@ use Doctrine\DBAL\Schema\DB2SchemaManager; ...@@ -9,8 +9,6 @@ use Doctrine\DBAL\Schema\DB2SchemaManager;
/** /**
* Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for IBM DB2 based drivers. * Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for IBM DB2 based drivers.
*
* @link www.doctrine-project.org
*/ */
abstract class AbstractDB2Driver implements Driver abstract class AbstractDB2Driver implements Driver
{ {
......
...@@ -6,8 +6,6 @@ use Exception; ...@@ -6,8 +6,6 @@ use Exception;
/** /**
* Abstract base implementation of the {@link DriverException} interface. * Abstract base implementation of the {@link DriverException} interface.
*
* @link www.doctrine-project.org
*/ */
abstract class AbstractDriverException extends Exception implements DriverException abstract class AbstractDriverException extends Exception implements DriverException
{ {
......
...@@ -18,8 +18,6 @@ use function version_compare; ...@@ -18,8 +18,6 @@ use function version_compare;
/** /**
* Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for MySQL based drivers. * Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for MySQL based drivers.
*
* @link www.doctrine-project.org
*/ */
abstract class AbstractMySQLDriver implements Driver, ExceptionConverterDriver, VersionAwarePlatformDriver abstract class AbstractMySQLDriver implements Driver, ExceptionConverterDriver, VersionAwarePlatformDriver
{ {
......
...@@ -11,8 +11,6 @@ use Doctrine\DBAL\Schema\OracleSchemaManager; ...@@ -11,8 +11,6 @@ use Doctrine\DBAL\Schema\OracleSchemaManager;
/** /**
* Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for Oracle based drivers. * Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for Oracle based drivers.
*
* @link www.doctrine-project.org
*/ */
abstract class AbstractOracleDriver implements Driver, ExceptionConverterDriver abstract class AbstractOracleDriver implements Driver, ExceptionConverterDriver
{ {
......
...@@ -19,8 +19,6 @@ use function version_compare; ...@@ -19,8 +19,6 @@ use function version_compare;
/** /**
* Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for PostgreSQL based drivers. * Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for PostgreSQL based drivers.
*
* @link www.doctrine-project.org
*/ */
abstract class AbstractPostgreSQLDriver implements Driver, ExceptionConverterDriver, VersionAwarePlatformDriver abstract class AbstractPostgreSQLDriver implements Driver, ExceptionConverterDriver, VersionAwarePlatformDriver
{ {
......
...@@ -17,8 +17,6 @@ use function version_compare; ...@@ -17,8 +17,6 @@ use function version_compare;
/** /**
* Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for SAP Sybase SQL Anywhere based drivers. * Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for SAP Sybase SQL Anywhere based drivers.
*
* @link www.doctrine-project.org
*/ */
abstract class AbstractSQLAnywhereDriver implements Driver, ExceptionConverterDriver, VersionAwarePlatformDriver abstract class AbstractSQLAnywhereDriver implements Driver, ExceptionConverterDriver, VersionAwarePlatformDriver
{ {
......
...@@ -16,8 +16,6 @@ use function version_compare; ...@@ -16,8 +16,6 @@ use function version_compare;
/** /**
* Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for Microsoft SQL Server based drivers. * Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for Microsoft SQL Server based drivers.
*
* @link www.doctrine-project.org
*/ */
abstract class AbstractSQLServerDriver implements Driver, VersionAwarePlatformDriver abstract class AbstractSQLServerDriver implements Driver, VersionAwarePlatformDriver
{ {
......
...@@ -11,8 +11,6 @@ use function strpos; ...@@ -11,8 +11,6 @@ use function strpos;
/** /**
* Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for SQLite based drivers. * Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for SQLite based drivers.
*
* @link www.doctrine-project.org
*/ */
abstract class AbstractSQLiteDriver implements Driver, ExceptionConverterDriver abstract class AbstractSQLiteDriver implements Driver, ExceptionConverterDriver
{ {
......
...@@ -9,8 +9,6 @@ use Throwable; ...@@ -9,8 +9,6 @@ use Throwable;
* *
* Driver exceptions provide the SQLSTATE of the driver * Driver exceptions provide the SQLSTATE of the driver
* and the driver specific error code at the time the error occurred. * and the driver specific error code at the time the error occurred.
*
* @link www.doctrine-project.org
*/ */
interface DriverException extends Throwable interface DriverException extends Throwable
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Driver; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Driver;
/** /**
* Contract for a driver that is capable of converting DBAL driver exceptions into standardized DBAL driver exceptions. * Contract for a driver that is capable of converting DBAL driver exceptions into standardized DBAL driver exceptions.
*
* @link www.doctrine-project.org
*/ */
interface ExceptionConverterDriver interface ExceptionConverterDriver
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Driver; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Driver;
/** /**
* Tiny wrapper for PDOException instances to implement the {@link DriverException} interface. * Tiny wrapper for PDOException instances to implement the {@link DriverException} interface.
*
* @link www.doctrine-project.org
*/ */
class PDOException extends \PDOException implements DriverException class PDOException extends \PDOException implements DriverException
{ {
......
...@@ -7,8 +7,6 @@ use Doctrine\DBAL\Driver\PDOConnection; ...@@ -7,8 +7,6 @@ use Doctrine\DBAL\Driver\PDOConnection;
/** /**
* Driver for the PDO IBM extension. * Driver for the PDO IBM extension.
*
* @link www.doctrine-project.org
*/ */
class Driver extends AbstractDB2Driver class Driver extends AbstractDB2Driver
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Driver; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Driver;
/** /**
* An interface for connections which support a "native" ping method. * An interface for connections which support a "native" ping method.
*
* @link www.doctrine-project.org
*/ */
interface PingableConnection interface PingableConnection
{ {
......
...@@ -10,8 +10,6 @@ use function implode; ...@@ -10,8 +10,6 @@ use function implode;
/** /**
* A Doctrine DBAL driver for the SAP Sybase SQL Anywhere PHP extension. * A Doctrine DBAL driver for the SAP Sybase SQL Anywhere PHP extension.
*
* @link www.doctrine-project.org
*/ */
class Driver extends AbstractSQLAnywhereDriver class Driver extends AbstractSQLAnywhereDriver
{ {
......
...@@ -25,8 +25,6 @@ use function sasql_set_option; ...@@ -25,8 +25,6 @@ use function sasql_set_option;
/** /**
* SAP Sybase SQL Anywhere implementation of the Connection interface. * SAP Sybase SQL Anywhere implementation of the Connection interface.
*
* @link www.doctrine-project.org
*/ */
class SQLAnywhereConnection implements Connection, ServerInfoAwareConnection class SQLAnywhereConnection implements Connection, ServerInfoAwareConnection
{ {
......
...@@ -13,8 +13,6 @@ use function sasql_stmt_error; ...@@ -13,8 +13,6 @@ use function sasql_stmt_error;
/** /**
* SAP Sybase SQL Anywhere driver exception. * SAP Sybase SQL Anywhere driver exception.
*
* @link www.doctrine-project.org
*/ */
class SQLAnywhereException extends AbstractDriverException class SQLAnywhereException extends AbstractDriverException
{ {
......
...@@ -38,8 +38,6 @@ use function sprintf; ...@@ -38,8 +38,6 @@ use function sprintf;
/** /**
* SAP SQL Anywhere implementation of the Statement interface. * SAP SQL Anywhere implementation of the Statement interface.
*
* @link www.doctrine-project.org
*/ */
class SQLAnywhereStatement implements IteratorAggregate, Statement class SQLAnywhereStatement implements IteratorAggregate, Statement
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Driver; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Driver;
/** /**
* Contract for a connection that is able to provide information about the server it is connected to. * Contract for a connection that is able to provide information about the server it is connected to.
*
* @link www.doctrine-project.org
*/ */
interface ServerInfoAwareConnection interface ServerInfoAwareConnection
{ {
......
...@@ -9,8 +9,6 @@ use Doctrine\DBAL\ParameterType; ...@@ -9,8 +9,6 @@ use Doctrine\DBAL\ParameterType;
* Drivers must implement this interface. * Drivers must implement this interface.
* *
* This resembles (a subset of) the PDOStatement interface. * This resembles (a subset of) the PDOStatement interface.
*
* @link www.doctrine-project.org
*/ */
interface Statement extends ResultStatement interface Statement extends ResultStatement
{ {
......
...@@ -10,8 +10,6 @@ use Doctrine\DBAL\Schema\AbstractSchemaManager; ...@@ -10,8 +10,6 @@ use Doctrine\DBAL\Schema\AbstractSchemaManager;
/** /**
* Event Arguments used when a Driver connection is established inside Doctrine\DBAL\Connection. * Event Arguments used when a Driver connection is established inside Doctrine\DBAL\Connection.
*
* @link www.doctrine-project.org
*/ */
class ConnectionEventArgs extends EventArgs class ConnectionEventArgs extends EventArgs
{ {
......
...@@ -10,8 +10,6 @@ use Doctrine\DBAL\Events; ...@@ -10,8 +10,6 @@ use Doctrine\DBAL\Events;
* MySQL Session Init Event Subscriber which allows to set the Client Encoding of the Connection. * MySQL Session Init Event Subscriber which allows to set the Client Encoding of the Connection.
* *
* @deprecated Use "charset" option to PDO MySQL Connection instead. * @deprecated Use "charset" option to PDO MySQL Connection instead.
*
* @link www.doctrine-project.org
*/ */
class MysqlSessionInit implements EventSubscriber class MysqlSessionInit implements EventSubscriber
{ {
......
...@@ -20,8 +20,6 @@ use function implode; ...@@ -20,8 +20,6 @@ use function implode;
* NLS_DATE_FORMAT="YYYY-MM-DD HH24:MI:SS" * NLS_DATE_FORMAT="YYYY-MM-DD HH24:MI:SS"
* NLS_TIMESTAMP_FORMAT="YYYY-MM-DD HH24:MI:SS" * NLS_TIMESTAMP_FORMAT="YYYY-MM-DD HH24:MI:SS"
* NLS_TIMESTAMP_TZ_FORMAT="YYYY-MM-DD HH24:MI:SS TZH:TZM" * NLS_TIMESTAMP_TZ_FORMAT="YYYY-MM-DD HH24:MI:SS TZH:TZM"
*
* @link www.doctrine-project.org
*/ */
class OracleSessionInit implements EventSubscriber class OracleSessionInit implements EventSubscriber
{ {
......
...@@ -8,8 +8,6 @@ use Doctrine\DBAL\Events; ...@@ -8,8 +8,6 @@ use Doctrine\DBAL\Events;
/** /**
* Session init listener for executing a single SQL statement right after a connection is opened. * Session init listener for executing a single SQL statement right after a connection is opened.
*
* @link www.doctrine-project.org
*/ */
class SQLSessionInit implements EventSubscriber class SQLSessionInit implements EventSubscriber
{ {
......
...@@ -10,8 +10,6 @@ use function is_array; ...@@ -10,8 +10,6 @@ use function is_array;
/** /**
* Event Arguments used when SQL queries for adding table columns are generated inside Doctrine\DBAL\Platform\*Platform. * Event Arguments used when SQL queries for adding table columns are generated inside Doctrine\DBAL\Platform\*Platform.
*
* @link www.doctrine-project.org
*/ */
class SchemaAlterTableAddColumnEventArgs extends SchemaEventArgs class SchemaAlterTableAddColumnEventArgs extends SchemaEventArgs
{ {
......
...@@ -10,8 +10,6 @@ use function is_array; ...@@ -10,8 +10,6 @@ use function is_array;
/** /**
* Event Arguments used when SQL queries for changing table columns are generated inside Doctrine\DBAL\Platform\*Platform. * Event Arguments used when SQL queries for changing table columns are generated inside Doctrine\DBAL\Platform\*Platform.
*
* @link www.doctrine-project.org
*/ */
class SchemaAlterTableChangeColumnEventArgs extends SchemaEventArgs class SchemaAlterTableChangeColumnEventArgs extends SchemaEventArgs
{ {
......
...@@ -9,8 +9,6 @@ use function is_array; ...@@ -9,8 +9,6 @@ use function is_array;
/** /**
* Event Arguments used when SQL queries for creating tables are generated inside Doctrine\DBAL\Platform\*Platform. * Event Arguments used when SQL queries for creating tables are generated inside Doctrine\DBAL\Platform\*Platform.
*
* @link www.doctrine-project.org
*/ */
class SchemaAlterTableEventArgs extends SchemaEventArgs class SchemaAlterTableEventArgs extends SchemaEventArgs
{ {
......
...@@ -10,8 +10,6 @@ use function is_array; ...@@ -10,8 +10,6 @@ use function is_array;
/** /**
* Event Arguments used when SQL queries for removing table columns are generated inside Doctrine\DBAL\Platform\*Platform. * Event Arguments used when SQL queries for removing table columns are generated inside Doctrine\DBAL\Platform\*Platform.
*
* @link www.doctrine-project.org
*/ */
class SchemaAlterTableRemoveColumnEventArgs extends SchemaEventArgs class SchemaAlterTableRemoveColumnEventArgs extends SchemaEventArgs
{ {
......
...@@ -10,8 +10,6 @@ use function is_array; ...@@ -10,8 +10,6 @@ use function is_array;
/** /**
* Event Arguments used when SQL queries for renaming table columns are generated inside Doctrine\DBAL\Platform\*Platform. * Event Arguments used when SQL queries for renaming table columns are generated inside Doctrine\DBAL\Platform\*Platform.
*
* @link www.doctrine-project.org
*/ */
class SchemaAlterTableRenameColumnEventArgs extends SchemaEventArgs class SchemaAlterTableRenameColumnEventArgs extends SchemaEventArgs
{ {
......
...@@ -8,8 +8,6 @@ use Doctrine\DBAL\Schema\Column; ...@@ -8,8 +8,6 @@ use Doctrine\DBAL\Schema\Column;
/** /**
* Event Arguments used when the portable column definition is generated inside Doctrine\DBAL\Schema\AbstractSchemaManager. * Event Arguments used when the portable column definition is generated inside Doctrine\DBAL\Schema\AbstractSchemaManager.
*
* @link www.doctrine-project.org
*/ */
class SchemaColumnDefinitionEventArgs extends SchemaEventArgs class SchemaColumnDefinitionEventArgs extends SchemaEventArgs
{ {
......
...@@ -10,8 +10,6 @@ use function is_array; ...@@ -10,8 +10,6 @@ use function is_array;
/** /**
* Event Arguments used when SQL queries for creating table columns are generated inside Doctrine\DBAL\Platform\AbstractPlatform. * Event Arguments used when SQL queries for creating table columns are generated inside Doctrine\DBAL\Platform\AbstractPlatform.
*
* @link www.doctrine-project.org
*/ */
class SchemaCreateTableColumnEventArgs extends SchemaEventArgs class SchemaCreateTableColumnEventArgs extends SchemaEventArgs
{ {
......
...@@ -10,8 +10,6 @@ use function is_array; ...@@ -10,8 +10,6 @@ use function is_array;
/** /**
* Event Arguments used when SQL queries for creating tables are generated inside Doctrine\DBAL\Platform\AbstractPlatform. * Event Arguments used when SQL queries for creating tables are generated inside Doctrine\DBAL\Platform\AbstractPlatform.
*
* @link www.doctrine-project.org
*/ */
class SchemaCreateTableEventArgs extends SchemaEventArgs class SchemaCreateTableEventArgs extends SchemaEventArgs
{ {
......
...@@ -9,8 +9,6 @@ use function is_string; ...@@ -9,8 +9,6 @@ use function is_string;
/** /**
* Event Arguments used when the SQL query for dropping tables are generated inside Doctrine\DBAL\Platform\AbstractPlatform. * Event Arguments used when the SQL query for dropping tables are generated inside Doctrine\DBAL\Platform\AbstractPlatform.
*
* @link www.doctrine-project.org
*/ */
class SchemaDropTableEventArgs extends SchemaEventArgs class SchemaDropTableEventArgs extends SchemaEventArgs
{ {
......
...@@ -6,8 +6,6 @@ use Doctrine\Common\EventArgs; ...@@ -6,8 +6,6 @@ use Doctrine\Common\EventArgs;
/** /**
* Base class for schema related events. * Base class for schema related events.
*
* @link www.doctrine-project.org
*/ */
class SchemaEventArgs extends EventArgs class SchemaEventArgs extends EventArgs
{ {
......
...@@ -8,8 +8,6 @@ use Doctrine\DBAL\Schema\Index; ...@@ -8,8 +8,6 @@ use Doctrine\DBAL\Schema\Index;
/** /**
* Event Arguments used when the portable index definition is generated inside Doctrine\DBAL\Schema\AbstractSchemaManager. * Event Arguments used when the portable index definition is generated inside Doctrine\DBAL\Schema\AbstractSchemaManager.
*
* @link www.doctrine-project.org
*/ */
class SchemaIndexDefinitionEventArgs extends SchemaEventArgs class SchemaIndexDefinitionEventArgs extends SchemaEventArgs
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Base class for all connection related errors detected in the driver. * Base class for all connection related errors detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class ConnectionException extends DriverException class ConnectionException extends DriverException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Base class for all constraint violation related errors detected in the driver. * Base class for all constraint violation related errors detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class ConstraintViolationException extends ServerException class ConstraintViolationException extends ServerException
{ {
......
...@@ -8,8 +8,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -8,8 +8,6 @@ namespace Doctrine\DBAL\Exception;
* A database object is considered any asset that can be created in a database * A database object is considered any asset that can be created in a database
* such as schemas, tables, views, sequences, triggers, constraints, indexes, * such as schemas, tables, views, sequences, triggers, constraints, indexes,
* functions, stored procedures etc. * functions, stored procedures etc.
*
* @link www.doctrine-project.org
*/ */
class DatabaseObjectExistsException extends ServerException class DatabaseObjectExistsException extends ServerException
{ {
......
...@@ -8,8 +8,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -8,8 +8,6 @@ namespace Doctrine\DBAL\Exception;
* A database object is considered any asset that can be created in a database * A database object is considered any asset that can be created in a database
* such as schemas, tables, views, sequences, triggers, constraints, indexes, * such as schemas, tables, views, sequences, triggers, constraints, indexes,
* functions, stored procedures etc. * functions, stored procedures etc.
*
* @link www.doctrine-project.org
*/ */
class DatabaseObjectNotFoundException extends ServerException class DatabaseObjectNotFoundException extends ServerException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Exception for a deadlock error of a transaction detected in the driver. * Exception for a deadlock error of a transaction detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class DeadlockException extends ServerException implements RetryableException class DeadlockException extends ServerException implements RetryableException
{ {
......
...@@ -7,8 +7,6 @@ use Exception; ...@@ -7,8 +7,6 @@ use Exception;
/** /**
* Base class for all errors detected in the driver. * Base class for all errors detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class DriverException extends DBALException class DriverException extends DBALException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Exception for a foreign key constraint violation detected in the driver. * Exception for a foreign key constraint violation detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class ForeignKeyConstraintViolationException extends ConstraintViolationException class ForeignKeyConstraintViolationException extends ConstraintViolationException
{ {
......
...@@ -6,8 +6,6 @@ use Doctrine\DBAL\DBALException; ...@@ -6,8 +6,6 @@ use Doctrine\DBAL\DBALException;
/** /**
* Exception to be thrown when invalid arguments are passed to any DBAL API * Exception to be thrown when invalid arguments are passed to any DBAL API
*
* @link www.doctrine-project.org
*/ */
class InvalidArgumentException extends DBALException class InvalidArgumentException extends DBALException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Exception for an invalid specified field name in a statement detected in the driver. * Exception for an invalid specified field name in a statement detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class InvalidFieldNameException extends ServerException class InvalidFieldNameException extends ServerException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Exception for a lock wait timeout error of a transaction detected in the driver. * Exception for a lock wait timeout error of a transaction detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class LockWaitTimeoutException extends ServerException implements RetryableException class LockWaitTimeoutException extends ServerException implements RetryableException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Exception for a non-unique/ambiguous specified field name in a statement detected in the driver. * Exception for a non-unique/ambiguous specified field name in a statement detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class NonUniqueFieldNameException extends ServerException class NonUniqueFieldNameException extends ServerException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Exception for a NOT NULL constraint violation detected in the driver. * Exception for a NOT NULL constraint violation detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class NotNullConstraintViolationException extends ConstraintViolationException class NotNullConstraintViolationException extends ConstraintViolationException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Exception for a write operation attempt on a read-only database element detected in the driver. * Exception for a write operation attempt on a read-only database element detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class ReadOnlyException extends ServerException class ReadOnlyException extends ServerException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Marker interface for all exceptions where retrying the transaction makes sense. * Marker interface for all exceptions where retrying the transaction makes sense.
*
* @link www.doctrine-project.org
*/ */
interface RetryableException interface RetryableException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Base class for all server related errors detected in the driver. * Base class for all server related errors detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class ServerException extends DriverException class ServerException extends DriverException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Exception for a syntax error in a statement detected in the driver. * Exception for a syntax error in a statement detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class SyntaxErrorException extends ServerException class SyntaxErrorException extends ServerException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Exception for an already existing table referenced in a statement detected in the driver. * Exception for an already existing table referenced in a statement detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class TableExistsException extends DatabaseObjectExistsException class TableExistsException extends DatabaseObjectExistsException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Exception for an unknown table referenced in a statement detected in the driver. * Exception for an unknown table referenced in a statement detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class TableNotFoundException extends DatabaseObjectNotFoundException class TableNotFoundException extends DatabaseObjectNotFoundException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/** /**
* Exception for a unique constraint violation detected in the driver. * Exception for a unique constraint violation detected in the driver.
*
* @link www.doctrine-project.org
*/ */
class UniqueConstraintViolationException extends ConstraintViolationException class UniqueConstraintViolationException extends ConstraintViolationException
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL;
/** /**
* Contains all DBAL LockModes. * Contains all DBAL LockModes.
*
* @link www.doctrine-project.org
*/ */
class LockMode class LockMode
{ {
......
...@@ -6,8 +6,6 @@ use function microtime; ...@@ -6,8 +6,6 @@ use function microtime;
/** /**
* Includes executed SQLs in a Debug Stack. * Includes executed SQLs in a Debug Stack.
*
* @link www.doctrine-project.org
*/ */
class DebugStack implements SQLLogger class DebugStack implements SQLLogger
{ {
......
...@@ -7,8 +7,6 @@ use function var_dump; ...@@ -7,8 +7,6 @@ use function var_dump;
/** /**
* A SQL logger that logs to the standard output using echo/var_dump. * A SQL logger that logs to the standard output using echo/var_dump.
*
* @link www.doctrine-project.org
*/ */
class EchoSQLLogger implements SQLLogger class EchoSQLLogger implements SQLLogger
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Logging; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Logging;
/** /**
* Chains multiple SQLLogger. * Chains multiple SQLLogger.
*
* @link www.doctrine-project.org
*/ */
class LoggerChain implements SQLLogger class LoggerChain implements SQLLogger
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Logging; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Logging;
/** /**
* Interface for SQL loggers. * Interface for SQL loggers.
*
* @link www.doctrine-project.org
*/ */
interface SQLLogger interface SQLLogger
{ {
......
...@@ -59,9 +59,7 @@ use function trigger_error; ...@@ -59,9 +59,7 @@ use function trigger_error;
* point of abstraction of platform-specific behaviors, features and SQL dialects. * point of abstraction of platform-specific behaviors, features and SQL dialects.
* They are a passive source of information. * They are a passive source of information.
* *
* @link www.doctrine-project.org * @todo Remove any unnecessary methods.
*
* @todo Remove any unnecessary methods.
*/ */
abstract class AbstractPlatform abstract class AbstractPlatform
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/** /**
* DB2 Keywords. * DB2 Keywords.
*
* @link www.doctrine-project.org
*/ */
class DB2Keywords extends KeywordList class DB2Keywords extends KeywordList
{ {
......
...@@ -8,8 +8,6 @@ use function strtoupper; ...@@ -8,8 +8,6 @@ use function strtoupper;
/** /**
* Abstract interface for a SQL reserved keyword dictionary. * Abstract interface for a SQL reserved keyword dictionary.
*
* @link www.doctrine-project.org
*/ */
abstract class KeywordList abstract class KeywordList
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/** /**
* MySQL 5.7 reserved keywords list. * MySQL 5.7 reserved keywords list.
*
* @link www.doctrine-project.org
*/ */
class MySQL57Keywords extends MySQLKeywords class MySQL57Keywords extends MySQLKeywords
{ {
......
...@@ -6,8 +6,6 @@ use function array_merge; ...@@ -6,8 +6,6 @@ use function array_merge;
/** /**
* MySQL 8.0 reserved keywords list. * MySQL 8.0 reserved keywords list.
*
* @link www.doctrine-project.org
*/ */
class MySQL80Keywords extends MySQL57Keywords class MySQL80Keywords extends MySQL57Keywords
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/** /**
* MySQL Keywordlist. * MySQL Keywordlist.
*
* @link www.doctrine-project.org
*/ */
class MySQLKeywords extends KeywordList class MySQLKeywords extends KeywordList
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/** /**
* Oracle Keywordlist. * Oracle Keywordlist.
*
* @link www.doctrine-project.org
*/ */
class OracleKeywords extends KeywordList class OracleKeywords extends KeywordList
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/** /**
* PostgreSQL 9.1 reserved keywords list. * PostgreSQL 9.1 reserved keywords list.
*
* @link www.doctrine-project.org
*/ */
class PostgreSQL91Keywords extends PostgreSQLKeywords class PostgreSQL91Keywords extends PostgreSQLKeywords
{ {
......
...@@ -6,8 +6,6 @@ use function array_merge; ...@@ -6,8 +6,6 @@ use function array_merge;
/** /**
* PostgreSQL 9.2 reserved keywords list. * PostgreSQL 9.2 reserved keywords list.
*
* @link www.doctrine-project.org
*/ */
class PostgreSQL92Keywords extends PostgreSQL91Keywords class PostgreSQL92Keywords extends PostgreSQL91Keywords
{ {
......
...@@ -7,8 +7,6 @@ use function array_merge; ...@@ -7,8 +7,6 @@ use function array_merge;
/** /**
* PostgreSQL 9.4 reserved keywords list. * PostgreSQL 9.4 reserved keywords list.
*
* @link www.doctrine-project.org
*/ */
class PostgreSQL94Keywords extends PostgreSQL92Keywords class PostgreSQL94Keywords extends PostgreSQL92Keywords
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/** /**
* PostgreSQL Keywordlist. * PostgreSQL Keywordlist.
*
* @link www.doctrine-project.org
*/ */
class PostgreSQLKeywords extends KeywordList class PostgreSQLKeywords extends KeywordList
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/** /**
* SQLite Keywordlist. * SQLite Keywordlist.
*
* @link www.doctrine-project.org
*/ */
class SQLiteKeywords extends KeywordList class SQLiteKeywords extends KeywordList
{ {
......
...@@ -8,8 +8,6 @@ use Doctrine\DBAL\Types\Type; ...@@ -8,8 +8,6 @@ use Doctrine\DBAL\Types\Type;
* Provides the behavior, features and SQL dialect of the MariaDB 10.2 (10.2.7 GA) database platform. * Provides the behavior, features and SQL dialect of the MariaDB 10.2 (10.2.7 GA) database platform.
* *
* Note: Should not be used with versions prior to 10.2.7. * Note: Should not be used with versions prior to 10.2.7.
*
* @link www.doctrine-project.org
*/ */
final class MariaDb1027Platform extends MySqlPlatform final class MariaDb1027Platform extends MySqlPlatform
{ {
......
...@@ -8,8 +8,6 @@ use Doctrine\DBAL\Types\Type; ...@@ -8,8 +8,6 @@ use Doctrine\DBAL\Types\Type;
/** /**
* Provides the behavior, features and SQL dialect of the MySQL 5.7 (5.7.9 GA) database platform. * Provides the behavior, features and SQL dialect of the MySQL 5.7 (5.7.9 GA) database platform.
*
* @link www.doctrine-project.org
*/ */
class MySQL57Platform extends MySqlPlatform class MySQL57Platform extends MySqlPlatform
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms;
/** /**
* Provides the behavior, features and SQL dialect of the MySQL 8.0 (8.0 GA) database platform. * Provides the behavior, features and SQL dialect of the MySQL 8.0 (8.0 GA) database platform.
*
* @link www.doctrine-project.org
*/ */
class MySQL80Platform extends MySQL57Platform class MySQL80Platform extends MySQL57Platform
{ {
......
...@@ -6,8 +6,6 @@ use function explode; ...@@ -6,8 +6,6 @@ use function explode;
/** /**
* Provides the behavior, features and SQL dialect of the PostgreSQL 9.1 database platform. * Provides the behavior, features and SQL dialect of the PostgreSQL 9.1 database platform.
*
* @link www.doctrine-project.org
*/ */
class PostgreSQL91Platform extends PostgreSqlPlatform class PostgreSQL91Platform extends PostgreSqlPlatform
{ {
......
...@@ -7,8 +7,6 @@ use function sprintf; ...@@ -7,8 +7,6 @@ use function sprintf;
/** /**
* Provides the behavior, features and SQL dialect of the PostgreSQL 9.2 database platform. * Provides the behavior, features and SQL dialect of the PostgreSQL 9.2 database platform.
*
* @link www.doctrine-project.org
*/ */
class PostgreSQL92Platform extends PostgreSQL91Platform class PostgreSQL92Platform extends PostgreSQL91Platform
{ {
......
...@@ -6,8 +6,6 @@ use Doctrine\DBAL\Types\Type; ...@@ -6,8 +6,6 @@ use Doctrine\DBAL\Types\Type;
/** /**
* Provides the behavior, features and SQL dialect of the PostgreSQL 9.4 database platform. * Provides the behavior, features and SQL dialect of the PostgreSQL 9.4 database platform.
*
* @link www.doctrine-project.org
*/ */
class PostgreSQL94Platform extends PostgreSQL92Platform class PostgreSQL94Platform extends PostgreSQL92Platform
{ {
......
...@@ -5,8 +5,6 @@ namespace Doctrine\DBAL\Platforms; ...@@ -5,8 +5,6 @@ namespace Doctrine\DBAL\Platforms;
/** /**
* The SQLAnywhere11Platform provides the behavior, features and SQL dialect of the * The SQLAnywhere11Platform provides the behavior, features and SQL dialect of the
* SAP Sybase SQL Anywhere 11 database platform. * SAP Sybase SQL Anywhere 11 database platform.
*
* @link www.doctrine-project.org
*/ */
class SQLAnywhere11Platform extends SQLAnywherePlatform class SQLAnywhere11Platform extends SQLAnywherePlatform
{ {
......
...@@ -8,8 +8,6 @@ use Doctrine\DBAL\Schema\Sequence; ...@@ -8,8 +8,6 @@ use Doctrine\DBAL\Schema\Sequence;
/** /**
* The SQLAnywhere12Platform provides the behavior, features and SQL dialect of the * The SQLAnywhere12Platform provides the behavior, features and SQL dialect of the
* SAP Sybase SQL Anywhere 12 database platform. * SAP Sybase SQL Anywhere 12 database platform.
*
* @link www.doctrine-project.org
*/ */
class SQLAnywhere12Platform extends SQLAnywhere11Platform class SQLAnywhere12Platform extends SQLAnywhere11Platform
{ {
......
...@@ -8,8 +8,6 @@ use UnexpectedValueException; ...@@ -8,8 +8,6 @@ use UnexpectedValueException;
/** /**
* The SQLAnywhere16Platform provides the behavior, features and SQL dialect of the * The SQLAnywhere16Platform provides the behavior, features and SQL dialect of the
* SAP Sybase SQL Anywhere 16 database platform. * SAP Sybase SQL Anywhere 16 database platform.
*
* @link www.doctrine-project.org
*/ */
class SQLAnywhere16Platform extends SQLAnywhere12Platform class SQLAnywhere16Platform extends SQLAnywhere12Platform
{ {
......
...@@ -33,8 +33,6 @@ use function substr; ...@@ -33,8 +33,6 @@ use function substr;
/** /**
* The SQLAnywherePlatform provides the behavior, features and SQL dialect of the * The SQLAnywherePlatform provides the behavior, features and SQL dialect of the
* SAP Sybase SQL Anywhere 10 database platform. * SAP Sybase SQL Anywhere 10 database platform.
*
* @link www.doctrine-project.org
*/ */
class SQLAnywherePlatform extends AbstractPlatform class SQLAnywherePlatform extends AbstractPlatform
{ {
......
...@@ -12,8 +12,6 @@ use function func_get_args; ...@@ -12,8 +12,6 @@ use function func_get_args;
/** /**
* Portability wrapper for a Connection. * Portability wrapper for a Connection.
*
* @link www.doctrine-project.org
*/ */
class Connection extends \Doctrine\DBAL\Connection class Connection extends \Doctrine\DBAL\Connection
{ {
......
...@@ -14,8 +14,6 @@ use function rtrim; ...@@ -14,8 +14,6 @@ use function rtrim;
/** /**
* Portability wrapper for a Statement. * Portability wrapper for a Statement.
*
* @link www.doctrine-project.org
*/ */
class Statement implements IteratorAggregate, DriverStatement class Statement implements IteratorAggregate, DriverStatement
{ {
......
...@@ -8,8 +8,6 @@ use function implode; ...@@ -8,8 +8,6 @@ use function implode;
/** /**
* Composite expression is responsible to build a group of similar expression. * Composite expression is responsible to build a group of similar expression.
*
* @link www.doctrine-project.org
*/ */
class CompositeExpression implements Countable class CompositeExpression implements Countable
{ {
......
...@@ -11,8 +11,6 @@ use function sprintf; ...@@ -11,8 +11,6 @@ use function sprintf;
/** /**
* ExpressionBuilder class is responsible to dynamically create SQL query parts. * ExpressionBuilder class is responsible to dynamically create SQL query parts.
*
* @link www.doctrine-project.org
*/ */
class ExpressionBuilder class ExpressionBuilder
{ {
......
...@@ -28,8 +28,6 @@ use function substr; ...@@ -28,8 +28,6 @@ use function substr;
* The query builder does no validation whatsoever if certain features even work with the * The query builder does no validation whatsoever if certain features even work with the
* underlying database vendor. Limit queries and joins are NOT applied to UPDATE and DELETE statements * underlying database vendor. Limit queries and joins are NOT applied to UPDATE and DELETE statements
* even if some vendors such as MySQL support it. * even if some vendors such as MySQL support it.
*
* @link www.doctrine-project.org
*/ */
class QueryBuilder class QueryBuilder
{ {
......
...@@ -20,8 +20,6 @@ use function substr; ...@@ -20,8 +20,6 @@ use function substr;
/** /**
* Utility class that parses sql statements with regard to types and parameters. * Utility class that parses sql statements with regard to types and parameters.
*
* @link www.doctrine-project.org
*/ */
class SQLParserUtils class SQLParserUtils
{ {
......
...@@ -6,8 +6,6 @@ use function sprintf; ...@@ -6,8 +6,6 @@ use function sprintf;
/** /**
* Doctrine\DBAL\ConnectionException * Doctrine\DBAL\ConnectionException
*
* @link www.doctrine-project.org
*/ */
class SQLParserUtilsException extends DBALException class SQLParserUtilsException extends DBALException
{ {
......
...@@ -19,8 +19,6 @@ use function substr; ...@@ -19,8 +19,6 @@ use function substr;
* *
* This encapsulation hack is necessary to keep a consistent state of the database schema. Say we have a list of tables * This encapsulation hack is necessary to keep a consistent state of the database schema. Say we have a list of tables
* array($tableName => Table($tableName)); if you want to rename the table, you have to make sure * array($tableName => Table($tableName)); if you want to rename the table, you have to make sure
*
* @link www.doctrine-project.org
*/ */
abstract class AbstractAsset abstract class AbstractAsset
{ {
......
...@@ -12,8 +12,6 @@ use function trigger_error; ...@@ -12,8 +12,6 @@ use function trigger_error;
/** /**
* Object representation of a database column. * Object representation of a database column.
*
* @link www.doctrine-project.org
*/ */
class Column extends AbstractAsset class Column extends AbstractAsset
{ {
......
...@@ -6,8 +6,6 @@ use function in_array; ...@@ -6,8 +6,6 @@ use function in_array;
/** /**
* Represents the change of a column. * Represents the change of a column.
*
* @link www.doctrine-project.org
*/ */
class ColumnDiff class ColumnDiff
{ {
......
...@@ -15,8 +15,6 @@ use function strtolower; ...@@ -15,8 +15,6 @@ use function strtolower;
/** /**
* Compares two Schemas and return an instance of SchemaDiff. * Compares two Schemas and return an instance of SchemaDiff.
*
* @link www.doctrine-project.org
*/ */
class Comparator class Comparator
{ {
......
...@@ -6,8 +6,6 @@ use Doctrine\DBAL\Platforms\AbstractPlatform; ...@@ -6,8 +6,6 @@ use Doctrine\DBAL\Platforms\AbstractPlatform;
/** /**
* Marker interface for constraints. * Marker interface for constraints.
*
* @link www.doctrine-project.org
*/ */
interface Constraint interface Constraint
{ {
......
...@@ -13,8 +13,6 @@ use function trim; ...@@ -13,8 +13,6 @@ use function trim;
/** /**
* IBM Db2 Schema Manager. * IBM Db2 Schema Manager.
*
* @link www.doctrine-project.org
*/ */
class DB2SchemaManager extends AbstractSchemaManager class DB2SchemaManager extends AbstractSchemaManager
{ {
......
...@@ -14,8 +14,6 @@ use function strtoupper; ...@@ -14,8 +14,6 @@ use function strtoupper;
/** /**
* An abstraction class for a foreign key constraint. * An abstraction class for a foreign key constraint.
*
* @link www.doctrine-project.org
*/ */
class ForeignKeyConstraint extends AbstractAsset implements Constraint class ForeignKeyConstraint extends AbstractAsset implements Constraint
{ {
......
...@@ -7,8 +7,6 @@ namespace Doctrine\DBAL\Schema; ...@@ -7,8 +7,6 @@ namespace Doctrine\DBAL\Schema;
* *
* Wraps identifier names like column names in indexes / foreign keys * Wraps identifier names like column names in indexes / foreign keys
* in an abstract class for proper quotation capabilities. * in an abstract class for proper quotation capabilities.
*
* @link www.doctrine-project.org
*/ */
class Identifier extends AbstractAsset class Identifier extends AbstractAsset
{ {
......
...@@ -9,8 +9,6 @@ use function preg_replace; ...@@ -9,8 +9,6 @@ use function preg_replace;
/** /**
* SAP Sybase SQL Anywhere schema manager. * SAP Sybase SQL Anywhere schema manager.
*
* @link www.doctrine-project.org
*/ */
class SQLAnywhereSchemaManager extends AbstractSchemaManager class SQLAnywhereSchemaManager extends AbstractSchemaManager
{ {
......
...@@ -34,8 +34,6 @@ use function strtolower; ...@@ -34,8 +34,6 @@ use function strtolower;
* the CREATE/DROP SQL visitors will just filter this queries and do not * the CREATE/DROP SQL visitors will just filter this queries and do not
* execute them. Only the queries for the currently connected database are * execute them. Only the queries for the currently connected database are
* executed. * executed.
*
* @link www.doctrine-project.org
*/ */
class Schema extends AbstractAsset class Schema extends AbstractAsset
{ {
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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