fix for the accessor configuration constants
This commit is contained in:
parent
5d449f6af4
commit
e89bfc8d40
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue