Show
Ignore:
Timestamp:
03/23/08 11:30:29 (10 months ago)
Author:
romanb
Message:

refactorings

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/Doctrine.php

    r4055 r4101  
    568568     * INHERITANCE TYPE CONSTANTS. 
    569569     */ 
    570            
     570    const INHERITANCE_TYPE_NONE = 0; 
     571     
    571572    /** 
    572573     * Constant for Single Table Inheritance. 
     
    574575     * @see http://martinfowler.com/eaaCatalog/singleTableInheritance.html 
    575576    */ 
    576     const INHERITANCETYPE_SINGLE_TABLE = 1; 
     577    const INHERITANCE_TYPE_SINGLE_TABLE = 1; 
    577578          
    578579    /** 
     
    581582     * @see http://martinfowler.com/eaaCatalog/classTableInheritance.html 
    582583     */ 
    583     const INHERITANCETYPE_JOINED = 2; 
     584    const INHERITANCE_TYPE_JOINED = 2; 
    584585      
    585586    /** 
     
    588589     * @see http://martinfowler.com/eaaCatalog/concreteTableInheritance.html 
    589590     */ 
    590     const INHERITANCETYPE_TABLE_PER_CLASS = 3; 
     591    const INHERITANCE_TYPE_TABLE_PER_CLASS = 3; 
    591592 
    592593