1
0
mirror of synced 2025-03-21 15:33:51 +03:00

set method exists() to final

This commit is contained in:
amadeus 2006-08-24 18:44:10 +00:00
parent 11efc8e7cc
commit c71ce5cd05

View File

@ -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;
}
/**