From e89bfc8d405b17d49f9bae9ab02e2b3627fcb607 Mon Sep 17 00:00:00 2001 From: chtito Date: Wed, 13 Dec 2006 21:00:26 +0000 Subject: [PATCH] fix for the accessor configuration constants --- lib/Doctrine.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine.php b/lib/Doctrine.php index 0ab9dd196..f10882f57 100644 --- a/lib/Doctrine.php +++ b/lib/Doctrine.php @@ -196,6 +196,10 @@ final class Doctrine { * ACCESSOR CONSTANTS */ + /** + * constant for no accessors + */ + const ACCESSOR_NONE = 0; /** * constant for get accessors */ @@ -207,7 +211,7 @@ final class Doctrine { /** * constant for both accessors get and set */ - const ACCESSOR_BOTH = 4; + const ACCESSOR_BOTH = 3; /** * PORTABILITY CONSTANTS