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-16 07:24:18 +03:00 committed by Sergey Linnik
parent 10393dca68
commit 57d2bf1f26
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>
* @since 2.0
*/
final class NativeQuery extends AbstractQuery
class NativeQuery extends AbstractQuery
{
/**
* @var string

View File

@ -40,7 +40,7 @@ use function assert;
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @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.