From fc53bc890981739a92b75c3188e29ab417a43026 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Wed, 2 Oct 2013 12:07:28 +0200 Subject: [PATCH] Fix some LGPL occurances to MIT --- lib/Doctrine/ORM/Event/OnClearEventArgs.php | 2 +- lib/Doctrine/ORM/Event/OnFlushEventArgs.php | 2 +- lib/Doctrine/ORM/Event/PostFlushEventArgs.php | 2 +- lib/Doctrine/ORM/Event/PreFlushEventArgs.php | 2 +- lib/Doctrine/ORM/Mapping/Builder/ClassMetadataBuilder.php | 2 +- lib/Doctrine/ORM/Mapping/Builder/FieldBuilder.php | 2 +- .../ORM/Mapping/Builder/ManyToManyAssociationBuilder.php | 2 +- .../ORM/Mapping/Builder/OneToManyAssociationBuilder.php | 2 +- lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php | 2 +- lib/Doctrine/ORM/PessimisticLockException.php | 2 +- lib/Doctrine/ORM/Query/AST/JoinClassPathExpression.php | 2 +- lib/Doctrine/ORM/Query/Exec/AbstractSqlExecutor.php | 2 +- lib/Doctrine/ORM/Query/Exec/MultiTableDeleteExecutor.php | 2 +- lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php | 2 +- lib/Doctrine/ORM/Query/Exec/SingleTableDeleteUpdateExecutor.php | 2 +- lib/Doctrine/ORM/Query/ParserResult.php | 2 +- lib/Doctrine/ORM/Query/Printer.php | 2 +- .../ORM/Tools/Console/Command/ValidateSchemaCommand.php | 2 +- lib/Doctrine/ORM/Tools/Console/MetadataFilter.php | 2 +- lib/Doctrine/ORM/Tools/Event/GenerateSchemaEventArgs.php | 2 +- lib/Doctrine/ORM/Tools/Event/GenerateSchemaTableEventArgs.php | 2 +- lib/Doctrine/ORM/Tools/SchemaValidator.php | 2 +- lib/Doctrine/ORM/TransactionRequiredException.php | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/lib/Doctrine/ORM/Event/OnClearEventArgs.php b/lib/Doctrine/ORM/Event/OnClearEventArgs.php index 3a29680f7..f37120573 100644 --- a/lib/Doctrine/ORM/Event/OnClearEventArgs.php +++ b/lib/Doctrine/ORM/Event/OnClearEventArgs.php @@ -24,7 +24,7 @@ use Doctrine\ORM\EntityManager; /** * Provides event arguments for the onClear event. * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.org * @since 2.0 * @author Roman Borschel diff --git a/lib/Doctrine/ORM/Event/OnFlushEventArgs.php b/lib/Doctrine/ORM/Event/OnFlushEventArgs.php index 2dd05a5fa..c4f82a971 100644 --- a/lib/Doctrine/ORM/Event/OnFlushEventArgs.php +++ b/lib/Doctrine/ORM/Event/OnFlushEventArgs.php @@ -25,7 +25,7 @@ use Doctrine\ORM\EntityManager; /** * Provides event arguments for the preFlush event. * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.org * @since 2.0 * @author Roman Borschel diff --git a/lib/Doctrine/ORM/Event/PostFlushEventArgs.php b/lib/Doctrine/ORM/Event/PostFlushEventArgs.php index d12060082..f860b7fa9 100644 --- a/lib/Doctrine/ORM/Event/PostFlushEventArgs.php +++ b/lib/Doctrine/ORM/Event/PostFlushEventArgs.php @@ -24,7 +24,7 @@ use Doctrine\Common\EventArgs; /** * Provides event arguments for the postFlush event. * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.org * @since 2.0 * @author Daniel Freudenberger diff --git a/lib/Doctrine/ORM/Event/PreFlushEventArgs.php b/lib/Doctrine/ORM/Event/PreFlushEventArgs.php index bfee5c76e..4f49162b8 100644 --- a/lib/Doctrine/ORM/Event/PreFlushEventArgs.php +++ b/lib/Doctrine/ORM/Event/PreFlushEventArgs.php @@ -25,7 +25,7 @@ use Doctrine\ORM\EntityManager; /** * Provides event arguments for the preFlush event. * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.com * @since 2.0 * @author Roman Borschel diff --git a/lib/Doctrine/ORM/Mapping/Builder/ClassMetadataBuilder.php b/lib/Doctrine/ORM/Mapping/Builder/ClassMetadataBuilder.php index 774c9e06e..2b0d74b7d 100644 --- a/lib/Doctrine/ORM/Mapping/Builder/ClassMetadataBuilder.php +++ b/lib/Doctrine/ORM/Mapping/Builder/ClassMetadataBuilder.php @@ -25,7 +25,7 @@ use Doctrine\ORM\Mapping\ClassMetadataInfo; /** * Builder Object for ClassMetadata * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.com * @since 2.2 * @author Benjamin Eberlei diff --git a/lib/Doctrine/ORM/Mapping/Builder/FieldBuilder.php b/lib/Doctrine/ORM/Mapping/Builder/FieldBuilder.php index a4eb8cced..f517dd343 100644 --- a/lib/Doctrine/ORM/Mapping/Builder/FieldBuilder.php +++ b/lib/Doctrine/ORM/Mapping/Builder/FieldBuilder.php @@ -22,7 +22,7 @@ namespace Doctrine\ORM\Mapping\Builder; /** * Field Builder * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.com * @since 2.2 * @author Benjamin Eberlei diff --git a/lib/Doctrine/ORM/Mapping/Builder/ManyToManyAssociationBuilder.php b/lib/Doctrine/ORM/Mapping/Builder/ManyToManyAssociationBuilder.php index 0dc0af487..a182e1e86 100644 --- a/lib/Doctrine/ORM/Mapping/Builder/ManyToManyAssociationBuilder.php +++ b/lib/Doctrine/ORM/Mapping/Builder/ManyToManyAssociationBuilder.php @@ -22,7 +22,7 @@ namespace Doctrine\ORM\Mapping\Builder; /** * ManyToMany Association Builder * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.com * @since 2.0 * @author Benjamin Eberlei diff --git a/lib/Doctrine/ORM/Mapping/Builder/OneToManyAssociationBuilder.php b/lib/Doctrine/ORM/Mapping/Builder/OneToManyAssociationBuilder.php index d8f4c3953..4ca60f0ce 100644 --- a/lib/Doctrine/ORM/Mapping/Builder/OneToManyAssociationBuilder.php +++ b/lib/Doctrine/ORM/Mapping/Builder/OneToManyAssociationBuilder.php @@ -22,7 +22,7 @@ namespace Doctrine\ORM\Mapping\Builder; /** * OneToMany Association Builder * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.com * @since 2.0 * @author Benjamin Eberlei diff --git a/lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php b/lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php index ed4386ac4..6e024d041 100644 --- a/lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php +++ b/lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php @@ -28,7 +28,7 @@ use Doctrine\ORM\Mapping\MappingException; /** * XmlDriver is a metadata driver that enables mapping through XML files. * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.org * @since 2.0 * @author Benjamin Eberlei diff --git a/lib/Doctrine/ORM/PessimisticLockException.php b/lib/Doctrine/ORM/PessimisticLockException.php index 2bc93bffe..d60f7a821 100644 --- a/lib/Doctrine/ORM/PessimisticLockException.php +++ b/lib/Doctrine/ORM/PessimisticLockException.php @@ -22,7 +22,7 @@ namespace Doctrine\ORM; /** * Pessimistic Lock Exception * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.com * @since 1.0 * @author Benjamin Eberlei diff --git a/lib/Doctrine/ORM/Query/AST/JoinClassPathExpression.php b/lib/Doctrine/ORM/Query/AST/JoinClassPathExpression.php index 1c67cb9c4..7e374149f 100644 --- a/lib/Doctrine/ORM/Query/AST/JoinClassPathExpression.php +++ b/lib/Doctrine/ORM/Query/AST/JoinClassPathExpression.php @@ -22,7 +22,7 @@ namespace Doctrine\ORM\Query\AST; /** * JoinClassPathExpression ::= AbstractSchemaName ["AS"] AliasIdentificationVariable * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.org * @since 2.3 * @author Alexander diff --git a/lib/Doctrine/ORM/Query/Exec/AbstractSqlExecutor.php b/lib/Doctrine/ORM/Query/Exec/AbstractSqlExecutor.php index 3d6ed4353..9be35df18 100644 --- a/lib/Doctrine/ORM/Query/Exec/AbstractSqlExecutor.php +++ b/lib/Doctrine/ORM/Query/Exec/AbstractSqlExecutor.php @@ -26,7 +26,7 @@ use Doctrine\DBAL\Cache\QueryCacheProfile; * Base class for SQL statement executors. * * @author Roman Borschel - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link http://www.doctrine-project.org * @since 2.0 * @todo Rename: AbstractSQLExecutor diff --git a/lib/Doctrine/ORM/Query/Exec/MultiTableDeleteExecutor.php b/lib/Doctrine/ORM/Query/Exec/MultiTableDeleteExecutor.php index 13af55905..e110d13e1 100644 --- a/lib/Doctrine/ORM/Query/Exec/MultiTableDeleteExecutor.php +++ b/lib/Doctrine/ORM/Query/Exec/MultiTableDeleteExecutor.php @@ -27,7 +27,7 @@ use Doctrine\ORM\Query\AST; * Class Table Inheritance (JOINED). * * @author Roman Borschel - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link http://www.doctrine-project.org * @since 2.0 */ diff --git a/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php b/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php index f652fbe8c..91827ab1a 100644 --- a/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php +++ b/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php @@ -26,7 +26,7 @@ use Doctrine\ORM\Query\SqlWalker; /** * Executor that executes the SQL statement for simple DQL SELECT statements. * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @author Roman Borschel * @link www.doctrine-project.org * @since 2.0 diff --git a/lib/Doctrine/ORM/Query/Exec/SingleTableDeleteUpdateExecutor.php b/lib/Doctrine/ORM/Query/Exec/SingleTableDeleteUpdateExecutor.php index 695176d5b..e0183dd68 100644 --- a/lib/Doctrine/ORM/Query/Exec/SingleTableDeleteUpdateExecutor.php +++ b/lib/Doctrine/ORM/Query/Exec/SingleTableDeleteUpdateExecutor.php @@ -26,7 +26,7 @@ use Doctrine\ORM\Query\AST; * Executor that executes the SQL statements for DQL DELETE/UPDATE statements on classes * that are mapped to a single table. * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @author Roman Borschel * @link www.doctrine-project.org * @since 2.0 diff --git a/lib/Doctrine/ORM/Query/ParserResult.php b/lib/Doctrine/ORM/Query/ParserResult.php index dfd7dd2c9..dfc7361f8 100644 --- a/lib/Doctrine/ORM/Query/ParserResult.php +++ b/lib/Doctrine/ORM/Query/ParserResult.php @@ -26,7 +26,7 @@ namespace Doctrine\ORM\Query; * @author Guilherme Blanco * @author Janne Vanhala * @author Roman Borschel - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link http://www.doctrine-project.org * @since 2.0 */ diff --git a/lib/Doctrine/ORM/Query/Printer.php b/lib/Doctrine/ORM/Query/Printer.php index ffb457538..d92ad850f 100644 --- a/lib/Doctrine/ORM/Query/Printer.php +++ b/lib/Doctrine/ORM/Query/Printer.php @@ -23,7 +23,7 @@ namespace Doctrine\ORM\Query; * A parse tree printer for Doctrine Query Language parser. * * @author Janne Vanhala - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link http://www.phpdoctrine.org * @since 2.0 */ diff --git a/lib/Doctrine/ORM/Tools/Console/Command/ValidateSchemaCommand.php b/lib/Doctrine/ORM/Tools/Console/Command/ValidateSchemaCommand.php index 4bffbf76e..37a8e3f76 100644 --- a/lib/Doctrine/ORM/Tools/Console/Command/ValidateSchemaCommand.php +++ b/lib/Doctrine/ORM/Tools/Console/Command/ValidateSchemaCommand.php @@ -27,7 +27,7 @@ use Doctrine\ORM\Tools\SchemaValidator; /** * Command to validate that the current mapping is valid. * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.com * @since 1.0 * @author Benjamin Eberlei diff --git a/lib/Doctrine/ORM/Tools/Console/MetadataFilter.php b/lib/Doctrine/ORM/Tools/Console/MetadataFilter.php index 4f7813c1f..6d691dc06 100644 --- a/lib/Doctrine/ORM/Tools/Console/MetadataFilter.php +++ b/lib/Doctrine/ORM/Tools/Console/MetadataFilter.php @@ -22,7 +22,7 @@ namespace Doctrine\ORM\Tools\Console; /** * Used by CLI Tools to restrict entity-based commands to given patterns. * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.com * @since 1.0 * @author Benjamin Eberlei diff --git a/lib/Doctrine/ORM/Tools/Event/GenerateSchemaEventArgs.php b/lib/Doctrine/ORM/Tools/Event/GenerateSchemaEventArgs.php index 36455621c..b8a7b20af 100644 --- a/lib/Doctrine/ORM/Tools/Event/GenerateSchemaEventArgs.php +++ b/lib/Doctrine/ORM/Tools/Event/GenerateSchemaEventArgs.php @@ -26,7 +26,7 @@ use Doctrine\ORM\EntityManager; /** * Event Args used for the Events::postGenerateSchema event. * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.com * @since 1.0 * @author Benjamin Eberlei diff --git a/lib/Doctrine/ORM/Tools/Event/GenerateSchemaTableEventArgs.php b/lib/Doctrine/ORM/Tools/Event/GenerateSchemaTableEventArgs.php index 9e68ae6e9..e2c38f9c5 100644 --- a/lib/Doctrine/ORM/Tools/Event/GenerateSchemaTableEventArgs.php +++ b/lib/Doctrine/ORM/Tools/Event/GenerateSchemaTableEventArgs.php @@ -26,7 +26,7 @@ use Doctrine\DBAL\Schema\Table; /** * Event Args used for the Events::postGenerateSchemaTable event. * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.com * @since 1.0 * @author Benjamin Eberlei diff --git a/lib/Doctrine/ORM/Tools/SchemaValidator.php b/lib/Doctrine/ORM/Tools/SchemaValidator.php index 889297ce8..11910138e 100644 --- a/lib/Doctrine/ORM/Tools/SchemaValidator.php +++ b/lib/Doctrine/ORM/Tools/SchemaValidator.php @@ -26,7 +26,7 @@ use Doctrine\DBAL\Types\Type; /** * Performs strict validation of the mapping schema * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.com * @since 1.0 * @author Benjamin Eberlei diff --git a/lib/Doctrine/ORM/TransactionRequiredException.php b/lib/Doctrine/ORM/TransactionRequiredException.php index 2242e60fb..c3417b674 100644 --- a/lib/Doctrine/ORM/TransactionRequiredException.php +++ b/lib/Doctrine/ORM/TransactionRequiredException.php @@ -22,7 +22,7 @@ namespace Doctrine\ORM; /** * Is thrown when a transaction is required for the current operation, but there is none open. * - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @license http://www.opensource.org/licenses/mit-license.php MIT * @link www.doctrine-project.com * @since 1.0 * @author Benjamin Eberlei