From c71ce5cd0538b3a98bfc7a3b8f9e058932478022 Mon Sep 17 00:00:00 2001 From: amadeus Date: Thu, 24 Aug 2006 18:44:10 +0000 Subject: [PATCH] set method exists() to final --- Doctrine/Record.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doctrine/Record.php b/Doctrine/Record.php index bdf074a62..bb0b14d57 100644 --- a/Doctrine/Record.php +++ b/Doctrine/Record.php @@ -824,7 +824,7 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite * checks if record has data * @return boolean */ - public function exists() { + final public function exists() { return $this->state !== Doctrine_Record::STATE_TCLEAN; } /**