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

parent 94ba9d74
<?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 Symfony\Component\Console\Helper\HelperSet;
......
......@@ -34,8 +34,6 @@ use function key;
* A wrapper around a Doctrine\DBAL\Driver\Connection that adds features like
* events, transaction isolation levels, configuration, emulated transaction nesting,
* lazy connecting and more.
*
* @link www.doctrine-project.org
*/
class Connection implements DriverConnection
{
......
......@@ -2,9 +2,6 @@
namespace Doctrine\DBAL;
/**
* @link www.doctrine-project.org
*/
class ConnectionException extends DBALException
{
/**
......
......@@ -9,8 +9,6 @@ use Doctrine\DBAL\Schema\DB2SchemaManager;
/**
* 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
{
......
......@@ -6,8 +6,6 @@ use Exception;
/**
* Abstract base implementation of the {@link DriverException} interface.
*
* @link www.doctrine-project.org
*/
abstract class AbstractDriverException extends Exception implements DriverException
{
......
......@@ -18,8 +18,6 @@ use function version_compare;
/**
* 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
{
......
......@@ -11,8 +11,6 @@ use Doctrine\DBAL\Schema\OracleSchemaManager;
/**
* 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
{
......
......@@ -19,8 +19,6 @@ use function version_compare;
/**
* 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
{
......
......@@ -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.
*
* @link www.doctrine-project.org
*/
abstract class AbstractSQLAnywhereDriver implements Driver, ExceptionConverterDriver, VersionAwarePlatformDriver
{
......
......@@ -16,8 +16,6 @@ use function version_compare;
/**
* 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
{
......
......@@ -11,8 +11,6 @@ use function strpos;
/**
* 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
{
......
......@@ -9,8 +9,6 @@ use Throwable;
*
* Driver exceptions provide the SQLSTATE of the driver
* and the driver specific error code at the time the error occurred.
*
* @link www.doctrine-project.org
*/
interface DriverException extends Throwable
{
......
......@@ -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.
*
* @link www.doctrine-project.org
*/
interface ExceptionConverterDriver
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Driver;
/**
* Tiny wrapper for PDOException instances to implement the {@link DriverException} interface.
*
* @link www.doctrine-project.org
*/
class PDOException extends \PDOException implements DriverException
{
......
......@@ -7,8 +7,6 @@ use Doctrine\DBAL\Driver\PDOConnection;
/**
* Driver for the PDO IBM extension.
*
* @link www.doctrine-project.org
*/
class Driver extends AbstractDB2Driver
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Driver;
/**
* An interface for connections which support a "native" ping method.
*
* @link www.doctrine-project.org
*/
interface PingableConnection
{
......
......@@ -10,8 +10,6 @@ use function implode;
/**
* A Doctrine DBAL driver for the SAP Sybase SQL Anywhere PHP extension.
*
* @link www.doctrine-project.org
*/
class Driver extends AbstractSQLAnywhereDriver
{
......
......@@ -25,8 +25,6 @@ use function sasql_set_option;
/**
* SAP Sybase SQL Anywhere implementation of the Connection interface.
*
* @link www.doctrine-project.org
*/
class SQLAnywhereConnection implements Connection, ServerInfoAwareConnection
{
......
......@@ -13,8 +13,6 @@ use function sasql_stmt_error;
/**
* SAP Sybase SQL Anywhere driver exception.
*
* @link www.doctrine-project.org
*/
class SQLAnywhereException extends AbstractDriverException
{
......
......@@ -38,8 +38,6 @@ use function sprintf;
/**
* SAP SQL Anywhere implementation of the Statement interface.
*
* @link www.doctrine-project.org
*/
class SQLAnywhereStatement implements IteratorAggregate, Statement
{
......
......@@ -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.
*
* @link www.doctrine-project.org
*/
interface ServerInfoAwareConnection
{
......
......@@ -9,8 +9,6 @@ use Doctrine\DBAL\ParameterType;
* Drivers must implement this interface.
*
* This resembles (a subset of) the PDOStatement interface.
*
* @link www.doctrine-project.org
*/
interface Statement extends ResultStatement
{
......
......@@ -10,8 +10,6 @@ use Doctrine\DBAL\Schema\AbstractSchemaManager;
/**
* Event Arguments used when a Driver connection is established inside Doctrine\DBAL\Connection.
*
* @link www.doctrine-project.org
*/
class ConnectionEventArgs extends EventArgs
{
......
......@@ -10,8 +10,6 @@ use Doctrine\DBAL\Events;
* MySQL Session Init Event Subscriber which allows to set the Client Encoding of the Connection.
*
* @deprecated Use "charset" option to PDO MySQL Connection instead.
*
* @link www.doctrine-project.org
*/
class MysqlSessionInit implements EventSubscriber
{
......
......@@ -20,8 +20,6 @@ use function implode;
* NLS_DATE_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"
*
* @link www.doctrine-project.org
*/
class OracleSessionInit implements EventSubscriber
{
......
......@@ -8,8 +8,6 @@ use Doctrine\DBAL\Events;
/**
* Session init listener for executing a single SQL statement right after a connection is opened.
*
* @link www.doctrine-project.org
*/
class SQLSessionInit implements EventSubscriber
{
......
......@@ -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.
*
* @link www.doctrine-project.org
*/
class SchemaAlterTableAddColumnEventArgs extends SchemaEventArgs
{
......
......@@ -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.
*
* @link www.doctrine-project.org
*/
class SchemaAlterTableChangeColumnEventArgs extends SchemaEventArgs
{
......
......@@ -9,8 +9,6 @@ use function is_array;
/**
* 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
{
......
......@@ -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.
*
* @link www.doctrine-project.org
*/
class SchemaAlterTableRemoveColumnEventArgs extends SchemaEventArgs
{
......
......@@ -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.
*
* @link www.doctrine-project.org
*/
class SchemaAlterTableRenameColumnEventArgs extends SchemaEventArgs
{
......
......@@ -8,8 +8,6 @@ use Doctrine\DBAL\Schema\Column;
/**
* Event Arguments used when the portable column definition is generated inside Doctrine\DBAL\Schema\AbstractSchemaManager.
*
* @link www.doctrine-project.org
*/
class SchemaColumnDefinitionEventArgs extends SchemaEventArgs
{
......
......@@ -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.
*
* @link www.doctrine-project.org
*/
class SchemaCreateTableColumnEventArgs extends SchemaEventArgs
{
......
......@@ -10,8 +10,6 @@ use function is_array;
/**
* 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
{
......
......@@ -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.
*
* @link www.doctrine-project.org
*/
class SchemaDropTableEventArgs extends SchemaEventArgs
{
......
......@@ -6,8 +6,6 @@ use Doctrine\Common\EventArgs;
/**
* Base class for schema related events.
*
* @link www.doctrine-project.org
*/
class SchemaEventArgs extends EventArgs
{
......
......@@ -8,8 +8,6 @@ use Doctrine\DBAL\Schema\Index;
/**
* Event Arguments used when the portable index definition is generated inside Doctrine\DBAL\Schema\AbstractSchemaManager.
*
* @link www.doctrine-project.org
*/
class SchemaIndexDefinitionEventArgs extends SchemaEventArgs
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* Base class for all connection related errors detected in the driver.
*
* @link www.doctrine-project.org
*/
class ConnectionException extends DriverException
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* Base class for all constraint violation related errors detected in the driver.
*
* @link www.doctrine-project.org
*/
class ConstraintViolationException extends ServerException
{
......
......@@ -8,8 +8,6 @@ namespace Doctrine\DBAL\Exception;
* A database object is considered any asset that can be created in a database
* such as schemas, tables, views, sequences, triggers, constraints, indexes,
* functions, stored procedures etc.
*
* @link www.doctrine-project.org
*/
class DatabaseObjectExistsException extends ServerException
{
......
......@@ -8,8 +8,6 @@ namespace Doctrine\DBAL\Exception;
* A database object is considered any asset that can be created in a database
* such as schemas, tables, views, sequences, triggers, constraints, indexes,
* functions, stored procedures etc.
*
* @link www.doctrine-project.org
*/
class DatabaseObjectNotFoundException extends ServerException
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* Exception for a deadlock error of a transaction detected in the driver.
*
* @link www.doctrine-project.org
*/
class DeadlockException extends ServerException implements RetryableException
{
......
......@@ -7,8 +7,6 @@ use Exception;
/**
* Base class for all errors detected in the driver.
*
* @link www.doctrine-project.org
*/
class DriverException extends DBALException
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* Exception for a foreign key constraint violation detected in the driver.
*
* @link www.doctrine-project.org
*/
class ForeignKeyConstraintViolationException extends ConstraintViolationException
{
......
......@@ -6,8 +6,6 @@ use Doctrine\DBAL\DBALException;
/**
* Exception to be thrown when invalid arguments are passed to any DBAL API
*
* @link www.doctrine-project.org
*/
class InvalidArgumentException extends DBALException
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* Exception for an invalid specified field name in a statement detected in the driver.
*
* @link www.doctrine-project.org
*/
class InvalidFieldNameException extends ServerException
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* 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
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* 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
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* Exception for a NOT NULL constraint violation detected in the driver.
*
* @link www.doctrine-project.org
*/
class NotNullConstraintViolationException extends ConstraintViolationException
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* 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
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* Marker interface for all exceptions where retrying the transaction makes sense.
*
* @link www.doctrine-project.org
*/
interface RetryableException
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* Base class for all server related errors detected in the driver.
*
* @link www.doctrine-project.org
*/
class ServerException extends DriverException
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* Exception for a syntax error in a statement detected in the driver.
*
* @link www.doctrine-project.org
*/
class SyntaxErrorException extends ServerException
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* Exception for an already existing table referenced in a statement detected in the driver.
*
* @link www.doctrine-project.org
*/
class TableExistsException extends DatabaseObjectExistsException
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* Exception for an unknown table referenced in a statement detected in the driver.
*
* @link www.doctrine-project.org
*/
class TableNotFoundException extends DatabaseObjectNotFoundException
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Exception;
/**
* Exception for a unique constraint violation detected in the driver.
*
* @link www.doctrine-project.org
*/
class UniqueConstraintViolationException extends ConstraintViolationException
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL;
/**
* Contains all DBAL LockModes.
*
* @link www.doctrine-project.org
*/
class LockMode
{
......
......@@ -6,8 +6,6 @@ use function microtime;
/**
* Includes executed SQLs in a Debug Stack.
*
* @link www.doctrine-project.org
*/
class DebugStack implements SQLLogger
{
......
......@@ -7,8 +7,6 @@ use function var_dump;
/**
* A SQL logger that logs to the standard output using echo/var_dump.
*
* @link www.doctrine-project.org
*/
class EchoSQLLogger implements SQLLogger
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Logging;
/**
* Chains multiple SQLLogger.
*
* @link www.doctrine-project.org
*/
class LoggerChain implements SQLLogger
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Logging;
/**
* Interface for SQL loggers.
*
* @link www.doctrine-project.org
*/
interface SQLLogger
{
......
......@@ -59,9 +59,7 @@ use function trigger_error;
* point of abstraction of platform-specific behaviors, features and SQL dialects.
* 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
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/**
* DB2 Keywords.
*
* @link www.doctrine-project.org
*/
class DB2Keywords extends KeywordList
{
......
......@@ -8,8 +8,6 @@ use function strtoupper;
/**
* Abstract interface for a SQL reserved keyword dictionary.
*
* @link www.doctrine-project.org
*/
abstract class KeywordList
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/**
* MySQL 5.7 reserved keywords list.
*
* @link www.doctrine-project.org
*/
class MySQL57Keywords extends MySQLKeywords
{
......
......@@ -6,8 +6,6 @@ use function array_merge;
/**
* MySQL 8.0 reserved keywords list.
*
* @link www.doctrine-project.org
*/
class MySQL80Keywords extends MySQL57Keywords
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/**
* MySQL Keywordlist.
*
* @link www.doctrine-project.org
*/
class MySQLKeywords extends KeywordList
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/**
* Oracle Keywordlist.
*
* @link www.doctrine-project.org
*/
class OracleKeywords extends KeywordList
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/**
* PostgreSQL 9.1 reserved keywords list.
*
* @link www.doctrine-project.org
*/
class PostgreSQL91Keywords extends PostgreSQLKeywords
{
......
......@@ -6,8 +6,6 @@ use function array_merge;
/**
* PostgreSQL 9.2 reserved keywords list.
*
* @link www.doctrine-project.org
*/
class PostgreSQL92Keywords extends PostgreSQL91Keywords
{
......
......@@ -7,8 +7,6 @@ use function array_merge;
/**
* PostgreSQL 9.4 reserved keywords list.
*
* @link www.doctrine-project.org
*/
class PostgreSQL94Keywords extends PostgreSQL92Keywords
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/**
* PostgreSQL Keywordlist.
*
* @link www.doctrine-project.org
*/
class PostgreSQLKeywords extends KeywordList
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Platforms\Keywords;
/**
* SQLite Keywordlist.
*
* @link www.doctrine-project.org
*/
class SQLiteKeywords extends KeywordList
{
......
......@@ -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.
*
* Note: Should not be used with versions prior to 10.2.7.
*
* @link www.doctrine-project.org
*/
final class MariaDb1027Platform extends MySqlPlatform
{
......
......@@ -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.
*
* @link www.doctrine-project.org
*/
class MySQL57Platform extends MySqlPlatform
{
......
......@@ -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.
*
* @link www.doctrine-project.org
*/
class MySQL80Platform extends MySQL57Platform
{
......
......@@ -6,8 +6,6 @@ use function explode;
/**
* Provides the behavior, features and SQL dialect of the PostgreSQL 9.1 database platform.
*
* @link www.doctrine-project.org
*/
class PostgreSQL91Platform extends PostgreSqlPlatform
{
......
......@@ -7,8 +7,6 @@ use function sprintf;
/**
* Provides the behavior, features and SQL dialect of the PostgreSQL 9.2 database platform.
*
* @link www.doctrine-project.org
*/
class PostgreSQL92Platform extends PostgreSQL91Platform
{
......
......@@ -6,8 +6,6 @@ use Doctrine\DBAL\Types\Type;
/**
* Provides the behavior, features and SQL dialect of the PostgreSQL 9.4 database platform.
*
* @link www.doctrine-project.org
*/
class PostgreSQL94Platform extends PostgreSQL92Platform
{
......
......@@ -5,8 +5,6 @@ namespace Doctrine\DBAL\Platforms;
/**
* The SQLAnywhere11Platform provides the behavior, features and SQL dialect of the
* SAP Sybase SQL Anywhere 11 database platform.
*
* @link www.doctrine-project.org
*/
class SQLAnywhere11Platform extends SQLAnywherePlatform
{
......
......@@ -8,8 +8,6 @@ use Doctrine\DBAL\Schema\Sequence;
/**
* The SQLAnywhere12Platform provides the behavior, features and SQL dialect of the
* SAP Sybase SQL Anywhere 12 database platform.
*
* @link www.doctrine-project.org
*/
class SQLAnywhere12Platform extends SQLAnywhere11Platform
{
......
......@@ -8,8 +8,6 @@ use UnexpectedValueException;
/**
* The SQLAnywhere16Platform provides the behavior, features and SQL dialect of the
* SAP Sybase SQL Anywhere 16 database platform.
*
* @link www.doctrine-project.org
*/
class SQLAnywhere16Platform extends SQLAnywhere12Platform
{
......
......@@ -33,8 +33,6 @@ use function substr;
/**
* The SQLAnywherePlatform provides the behavior, features and SQL dialect of the
* SAP Sybase SQL Anywhere 10 database platform.
*
* @link www.doctrine-project.org
*/
class SQLAnywherePlatform extends AbstractPlatform
{
......
......@@ -12,8 +12,6 @@ use function func_get_args;
/**
* Portability wrapper for a Connection.
*
* @link www.doctrine-project.org
*/
class Connection extends \Doctrine\DBAL\Connection
{
......
......@@ -14,8 +14,6 @@ use function rtrim;
/**
* Portability wrapper for a Statement.
*
* @link www.doctrine-project.org
*/
class Statement implements IteratorAggregate, DriverStatement
{
......
......@@ -8,8 +8,6 @@ use function implode;
/**
* Composite expression is responsible to build a group of similar expression.
*
* @link www.doctrine-project.org
*/
class CompositeExpression implements Countable
{
......
......@@ -11,8 +11,6 @@ use function sprintf;
/**
* ExpressionBuilder class is responsible to dynamically create SQL query parts.
*
* @link www.doctrine-project.org
*/
class ExpressionBuilder
{
......
......@@ -28,8 +28,6 @@ use function substr;
* 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
* even if some vendors such as MySQL support it.
*
* @link www.doctrine-project.org
*/
class QueryBuilder
{
......
......@@ -20,8 +20,6 @@ use function substr;
/**
* Utility class that parses sql statements with regard to types and parameters.
*
* @link www.doctrine-project.org
*/
class SQLParserUtils
{
......
......@@ -6,8 +6,6 @@ use function sprintf;
/**
* Doctrine\DBAL\ConnectionException
*
* @link www.doctrine-project.org
*/
class SQLParserUtilsException extends DBALException
{
......
......@@ -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
* array($tableName => Table($tableName)); if you want to rename the table, you have to make sure
*
* @link www.doctrine-project.org
*/
abstract class AbstractAsset
{
......
......@@ -12,8 +12,6 @@ use function trigger_error;
/**
* Object representation of a database column.
*
* @link www.doctrine-project.org
*/
class Column extends AbstractAsset
{
......
......@@ -6,8 +6,6 @@ use function in_array;
/**
* Represents the change of a column.
*
* @link www.doctrine-project.org
*/
class ColumnDiff
{
......
......@@ -15,8 +15,6 @@ use function strtolower;
/**
* Compares two Schemas and return an instance of SchemaDiff.
*
* @link www.doctrine-project.org
*/
class Comparator
{
......
......@@ -6,8 +6,6 @@ use Doctrine\DBAL\Platforms\AbstractPlatform;
/**
* Marker interface for constraints.
*
* @link www.doctrine-project.org
*/
interface Constraint
{
......
......@@ -13,8 +13,6 @@ use function trim;
/**
* IBM Db2 Schema Manager.
*
* @link www.doctrine-project.org
*/
class DB2SchemaManager extends AbstractSchemaManager
{
......
......@@ -14,8 +14,6 @@ use function strtoupper;
/**
* An abstraction class for a foreign key constraint.
*
* @link www.doctrine-project.org
*/
class ForeignKeyConstraint extends AbstractAsset implements Constraint
{
......
......@@ -7,8 +7,6 @@ namespace Doctrine\DBAL\Schema;
*
* Wraps identifier names like column names in indexes / foreign keys
* in an abstract class for proper quotation capabilities.
*
* @link www.doctrine-project.org
*/
class Identifier extends AbstractAsset
{
......
......@@ -9,8 +9,6 @@ use function preg_replace;
/**
* SAP Sybase SQL Anywhere schema manager.
*
* @link www.doctrine-project.org
*/
class SQLAnywhereSchemaManager extends AbstractSchemaManager
{
......
......@@ -34,8 +34,6 @@ use function strtolower;
* the CREATE/DROP SQL visitors will just filter this queries and do not
* execute them. Only the queries for the currently connected database are
* executed.
*
* @link www.doctrine-project.org
*/
class Schema extends AbstractAsset
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Schema;
/**
* Configuration for a Schema.
*
* @link www.doctrine-project.org
*/
class SchemaConfig
{
......
......@@ -7,8 +7,6 @@ use function array_merge;
/**
* Schema Diff.
*
* @link www.doctrine-project.org
*/
class SchemaDiff
{
......
......@@ -9,8 +9,6 @@ use function sprintf;
/**
* Sequence structure.
*
* @link www.doctrine-project.org
*/
class Sequence extends AbstractAsset
{
......
......@@ -17,8 +17,6 @@ use function strtolower;
/**
* Object Representation of a table.
*
* @link www.doctrine-project.org
*/
class Table extends AbstractAsset
{
......
......@@ -6,8 +6,6 @@ use Doctrine\DBAL\Platforms\AbstractPlatform;
/**
* Table Diff.
*
* @link www.doctrine-project.org
*/
class TableDiff
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Schema;
/**
* Representation of a Database View.
*
* @link www.doctrine-project.org
*/
class View extends AbstractAsset
{
......
......@@ -12,8 +12,6 @@ use function strlen;
/**
* Gathers SQL statements that allow to completely drop the current schema.
*
* @link www.doctrine-project.org
*/
class DropSchemaSqlCollector extends AbstractVisitor
{
......
......@@ -4,8 +4,6 @@ namespace Doctrine\DBAL\Schema\Visitor;
/**
* Visitor that can visit schema namespaces.
*
* @link www.doctrine-project.org
*/
interface NamespaceVisitor
{
......
......@@ -9,8 +9,6 @@ use Doctrine\DBAL\Schema\TableDiff;
/**
* Visit a SchemaDiff.
*
* @link www.doctrine-project.org
*/
interface SchemaDiffVisitor
{
......
......@@ -11,8 +11,6 @@ use Doctrine\DBAL\Schema\Table;
/**
* Schema Visitor used for Validation or Generation purposes.
*
* @link www.doctrine-project.org
*/
interface Visitor
{
......
......@@ -24,8 +24,6 @@ use function sprintf;
* the command line.
*
* @deprecated Use a database client application instead
*
* @link www.doctrine-project.org
*/
class ImportCommand extends Command
{
......
......@@ -16,8 +16,6 @@ use function stripos;
/**
* Task for executing arbitrary SQL that can come from a file or directly from
* the command line.
*
* @link www.doctrine-project.org
*/
class RunSqlCommand extends Command
{
......
......@@ -7,8 +7,6 @@ use Symfony\Component\Console\Helper\Helper;
/**
* Doctrine CLI Connection Helper.
*
* @link www.doctrine-project.org
*/
class ConnectionHelper extends Helper
{
......
<?php
/**
* Conversion Exception is thrown when the database to PHP conversion fails.
*
* @link www.doctrine-project.org
*/
namespace Doctrine\DBAL\Types;
use Doctrine\DBAL\DBALException;
......@@ -19,6 +13,9 @@ use function sprintf;
use function strlen;
use function substr;
/**
* Conversion Exception is thrown when the database to PHP conversion fails.
*/
class ConversionException extends DBALException
{
/**
......
......@@ -21,8 +21,6 @@ use Doctrine\DBAL\Platforms\AbstractPlatform;
* 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
* attached.
*
* @link www.doctrine-project.org
*/
class DateTimeTzType extends Type implements PhpDateTimeMappingType
{
......
......@@ -12,8 +12,6 @@ use function date_create;
* This type has performance implications as it runs twice as long as the regular
* {@see DateTimeType}, however in certain PostgreSQL configurations with
* TIMESTAMP(n) columns where n > 0 it is necessary to use this type.
*
* @link www.doctrine-project.org
*/
class VarDateTimeType extends DateTimeType
{
......
......@@ -8,8 +8,6 @@ use function version_compare;
/**
* Class to store and retrieve the version of Doctrine.
*
* @link www.doctrine-project.org
*/
class Version
{
......
......@@ -11,8 +11,6 @@ use Doctrine\DBAL\Platforms\AbstractPlatform;
* support the correct features and SQL syntax of each version.
* This interface should be implemented by drivers that are capable to do this
* distinction.
*
* @link www.doctrine-project.org
*/
interface VersionAwarePlatformDriver
{
......
......@@ -17,9 +17,6 @@ use Doctrine\DBAL\Types\Type;
use PHPUnit\Framework\TestCase;
use function array_keys;
/**
* @link www.doctrine-project.org
*/
class ComparatorTest extends TestCase
{
public function testCompareSame1()
......
<?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;
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