1
0
mirror of synced 2025-02-02 13:31:45 +03:00

Remove final keyword from Query classes

This commit is contained in:
Ilyas Salikhov 2015-06-16 07:24:18 +03:00 committed by Sergey Linnik
parent 36dc28d43e
commit 9a0089c5fa
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

@ -35,7 +35,7 @@ use Doctrine\Common\Collections\ArrayCollection;
* @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.