1
0
mirror of synced 2024-12-05 03:06:05 +03:00

Remove final keyword from Query classes

This commit is contained in:
Ilyas Salikhov 2015-06-14 13:16:01 +03:00
parent 0cf7e0e628
commit b85d004440
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ namespace Doctrine\ORM;
* @author Roman Borschel <roman@code-factory.org> * @author Roman Borschel <roman@code-factory.org>
* @since 2.0 * @since 2.0
*/ */
final class NativeQuery extends AbstractQuery class NativeQuery extends AbstractQuery
{ {
/** /**
* @var string * @var string

View File

@ -37,7 +37,7 @@ use Doctrine\ORM\Query\ParameterTypeInferer;
* @author Konsta Vesterinen <kvesteri@cc.hut.fi> * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Roman Borschel <roman@code-factory.org> * @author Roman Borschel <roman@code-factory.org>
*/ */
final class Query extends AbstractQuery class Query extends AbstractQuery
{ {
/** /**
* A query object is in CLEAN state when it has NO unparsed/unprocessed DQL parts. * A query object is in CLEAN state when it has NO unparsed/unprocessed DQL parts.