From 9a0089c5fae2d942a198d3141f34d021ece8bcfc Mon Sep 17 00:00:00 2001 From: Ilyas Salikhov Date: Tue, 16 Jun 2015 07:24:18 +0300 Subject: [PATCH] Remove final keyword from Query classes --- lib/Doctrine/ORM/NativeQuery.php | 2 +- lib/Doctrine/ORM/Query.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/ORM/NativeQuery.php b/lib/Doctrine/ORM/NativeQuery.php index b19f81805..9553aff30 100644 --- a/lib/Doctrine/ORM/NativeQuery.php +++ b/lib/Doctrine/ORM/NativeQuery.php @@ -25,7 +25,7 @@ namespace Doctrine\ORM; * @author Roman Borschel * @since 2.0 */ -final class NativeQuery extends AbstractQuery +class NativeQuery extends AbstractQuery { /** * @var string diff --git a/lib/Doctrine/ORM/Query.php b/lib/Doctrine/ORM/Query.php index 1911200a9..bc4f80dd0 100644 --- a/lib/Doctrine/ORM/Query.php +++ b/lib/Doctrine/ORM/Query.php @@ -35,7 +35,7 @@ use Doctrine\Common\Collections\ArrayCollection; * @author Konsta Vesterinen * @author Roman Borschel */ -final class Query extends AbstractQuery +class Query extends AbstractQuery { /** * A query object is in CLEAN state when it has NO unparsed/unprocessed DQL parts.