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
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Schema; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Schema;
/** /**
* Configuration for a Schema. * Configuration for a Schema.
*
* @link www.doctrine-project.org
*/ */
class SchemaConfig class SchemaConfig
{ {
......
...@@ -7,8 +7,6 @@ use function array_merge; ...@@ -7,8 +7,6 @@ use function array_merge;
/** /**
* Schema Diff. * Schema Diff.
*
* @link www.doctrine-project.org
*/ */
class SchemaDiff class SchemaDiff
{ {
......
...@@ -9,8 +9,6 @@ use function sprintf; ...@@ -9,8 +9,6 @@ use function sprintf;
/** /**
* Sequence structure. * Sequence structure.
*
* @link www.doctrine-project.org
*/ */
class Sequence extends AbstractAsset class Sequence extends AbstractAsset
{ {
......
...@@ -17,8 +17,6 @@ use function strtolower; ...@@ -17,8 +17,6 @@ use function strtolower;
/** /**
* Object Representation of a table. * Object Representation of a table.
*
* @link www.doctrine-project.org
*/ */
class Table extends AbstractAsset class Table extends AbstractAsset
{ {
......
...@@ -6,8 +6,6 @@ use Doctrine\DBAL\Platforms\AbstractPlatform; ...@@ -6,8 +6,6 @@ use Doctrine\DBAL\Platforms\AbstractPlatform;
/** /**
* Table Diff. * Table Diff.
*
* @link www.doctrine-project.org
*/ */
class TableDiff class TableDiff
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Schema; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Schema;
/** /**
* Representation of a Database View. * Representation of a Database View.
*
* @link www.doctrine-project.org
*/ */
class View extends AbstractAsset class View extends AbstractAsset
{ {
......
...@@ -12,8 +12,6 @@ use function strlen; ...@@ -12,8 +12,6 @@ use function strlen;
/** /**
* Gathers SQL statements that allow to completely drop the current schema. * Gathers SQL statements that allow to completely drop the current schema.
*
* @link www.doctrine-project.org
*/ */
class DropSchemaSqlCollector extends AbstractVisitor class DropSchemaSqlCollector extends AbstractVisitor
{ {
......
...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Schema\Visitor; ...@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Schema\Visitor;
/** /**
* Visitor that can visit schema namespaces. * Visitor that can visit schema namespaces.
*
* @link www.doctrine-project.org
*/ */
interface NamespaceVisitor interface NamespaceVisitor
{ {
......
...@@ -9,8 +9,6 @@ use Doctrine\DBAL\Schema\TableDiff; ...@@ -9,8 +9,6 @@ use Doctrine\DBAL\Schema\TableDiff;
/** /**
* Visit a SchemaDiff. * Visit a SchemaDiff.
*
* @link www.doctrine-project.org
*/ */
interface SchemaDiffVisitor interface SchemaDiffVisitor
{ {
......
...@@ -11,8 +11,6 @@ use Doctrine\DBAL\Schema\Table; ...@@ -11,8 +11,6 @@ use Doctrine\DBAL\Schema\Table;
/** /**
* Schema Visitor used for Validation or Generation purposes. * Schema Visitor used for Validation or Generation purposes.
*
* @link www.doctrine-project.org
*/ */
interface Visitor interface Visitor
{ {
......
...@@ -24,8 +24,6 @@ use function sprintf; ...@@ -24,8 +24,6 @@ use function sprintf;
* the command line. * the command line.
* *
* @deprecated Use a database client application instead * @deprecated Use a database client application instead
*
* @link www.doctrine-project.org
*/ */
class ImportCommand extends Command class ImportCommand extends Command
{ {
......
...@@ -16,8 +16,6 @@ use function stripos; ...@@ -16,8 +16,6 @@ use function stripos;
/** /**
* Task for executing arbitrary SQL that can come from a file or directly from * Task for executing arbitrary SQL that can come from a file or directly from
* the command line. * the command line.
*
* @link www.doctrine-project.org
*/ */
class RunSqlCommand extends Command class RunSqlCommand extends Command
{ {
......
...@@ -7,8 +7,6 @@ use Symfony\Component\Console\Helper\Helper; ...@@ -7,8 +7,6 @@ use Symfony\Component\Console\Helper\Helper;
/** /**
* Doctrine CLI Connection Helper. * Doctrine CLI Connection Helper.
*
* @link www.doctrine-project.org
*/ */
class ConnectionHelper extends Helper class ConnectionHelper extends Helper
{ {
......
<?php <?php
/**
* Conversion Exception is thrown when the database to PHP conversion fails.
*
* @link www.doctrine-project.org
*/
namespace Doctrine\DBAL\Types; namespace Doctrine\DBAL\Types;
use Doctrine\DBAL\DBALException; use Doctrine\DBAL\DBALException;
...@@ -19,6 +13,9 @@ use function sprintf; ...@@ -19,6 +13,9 @@ use function sprintf;
use function strlen; use function strlen;
use function substr; use function substr;
/**
* Conversion Exception is thrown when the database to PHP conversion fails.
*/
class ConversionException extends DBALException class ConversionException extends DBALException
{ {
/** /**
......
...@@ -21,8 +21,6 @@ use Doctrine\DBAL\Platforms\AbstractPlatform; ...@@ -21,8 +21,6 @@ use Doctrine\DBAL\Platforms\AbstractPlatform;
* attached with a timezone such as Europe/Berlin gets saved into the database with * attached with a timezone such as Europe/Berlin gets saved into the database with
* the offset and re-created from persistence with only the offset, not the original timezone * the offset and re-created from persistence with only the offset, not the original timezone
* attached. * attached.
*
* @link www.doctrine-project.org
*/ */
class DateTimeTzType extends Type implements PhpDateTimeMappingType class DateTimeTzType extends Type implements PhpDateTimeMappingType
{ {
......
...@@ -12,8 +12,6 @@ use function date_create; ...@@ -12,8 +12,6 @@ use function date_create;
* This type has performance implications as it runs twice as long as the regular * This type has performance implications as it runs twice as long as the regular
* {@see DateTimeType}, however in certain PostgreSQL configurations with * {@see DateTimeType}, however in certain PostgreSQL configurations with
* TIMESTAMP(n) columns where n > 0 it is necessary to use this type. * TIMESTAMP(n) columns where n > 0 it is necessary to use this type.
*
* @link www.doctrine-project.org
*/ */
class VarDateTimeType extends DateTimeType class VarDateTimeType extends DateTimeType
{ {
......
...@@ -8,8 +8,6 @@ use function version_compare; ...@@ -8,8 +8,6 @@ use function version_compare;
/** /**
* Class to store and retrieve the version of Doctrine. * Class to store and retrieve the version of Doctrine.
*
* @link www.doctrine-project.org
*/ */
class Version class Version
{ {
......
...@@ -11,8 +11,6 @@ use Doctrine\DBAL\Platforms\AbstractPlatform; ...@@ -11,8 +11,6 @@ use Doctrine\DBAL\Platforms\AbstractPlatform;
* support the correct features and SQL syntax of each version. * support the correct features and SQL syntax of each version.
* This interface should be implemented by drivers that are capable to do this * This interface should be implemented by drivers that are capable to do this
* distinction. * distinction.
*
* @link www.doctrine-project.org
*/ */
interface VersionAwarePlatformDriver interface VersionAwarePlatformDriver
{ {
......
...@@ -17,9 +17,6 @@ use Doctrine\DBAL\Types\Type; ...@@ -17,9 +17,6 @@ use Doctrine\DBAL\Types\Type;
use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestCase;
use function array_keys; use function array_keys;
/**
* @link www.doctrine-project.org
*/
class ComparatorTest extends TestCase class ComparatorTest extends TestCase
{ {
public function testCompareSame1() public function testCompareSame1()
......
<?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 LGPL. For more information, see
* <http://www.doctrine-project.org>.
*/
namespace Doctrine\Tests\DBAL\Sharding; namespace Doctrine\Tests\DBAL\Sharding;
use Doctrine\DBAL\Sharding\PoolingShardConnection; use Doctrine\DBAL\Sharding\PoolingShardConnection;
......
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