Show
Ignore:
Timestamp:
01/09/08 00:20:19 (1 year ago)
Author:
flack
Message:

unify bool/boolean to boolean in docblocks (php manual says this is the correct designator)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/midcom.core/midcom/services/dbclassloader.php

    r14179 r14329  
    250250     * If this function completes successfully, all __xxx classes are loaded and present. 
    251251     * 
    252      * @return bool Indicating success 
     252     * @return boolean Indicating success 
    253253     */ 
    254254    function load_classes($component, $filename) 
     
    318318     * 
    319319     * @param Array $definition_list A reference to the definition list to verify. 
    320      * @return bool Indicating success 
     320     * @return boolean Indicating success 
    321321     */ 
    322322    function _validate_class_definition_list(&$definition_list) 
     
    10901090     * 
    10911091     * @param object $object The object to check 
    1092      * @return bool true if this is a Legacy Midgard object, false otherwise. 
     1092     * @return boolean true if this is a Legacy Midgard object, false otherwise. 
    10931093     */ 
    10941094    function is_legacy_midgard_object(&$object) 
     
    11471147     * 
    11481148     * @param object $object The object to check 
    1149      * @return bool true if this is a MgdSchema object, false otherwise. 
     1149     * @return boolean true if this is a MgdSchema object, false otherwise. 
    11501150     */ 
    11511151    function is_mgdschema_object(&$object) 
     
    11941194     * 
    11951195     * @param string $classname The name of the MidCOM DBA class that must be available. 
    1196      * @return bool Indicating success. False is returned only if you are requesting unknown 
     1196     * @return boolean Indicating success. False is returned only if you are requesting unknown 
    11971197     *     classes and the like. Component loading failure will result in an HTTP 500, as 
    11981198     *     always. 
     
    12321232     * 
    12331233     * @param object $object The object to check 
    1234      * @return bool true if this is a MidCOM Database object, false otherwise. 
     1234     * @return boolean true if this is a MidCOM Database object, false otherwise. 
    12351235     */ 
    12361236    function is_midcom_db_object(&$object)