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/indexer/document.php

    r14139 r14329  
    255255     * - 'component': Invoke the _on_check_document_visible component interface method of the component after doing default checks. 
    256256     *   This security class absolutely requires the document to contain a vaild topic GUID, otherwise access control will fail anyway. 
    257      * - 'function:$function_name': Invoke the globally available function $function_name, its signature is <i>bool $function_name ($document, $topic)</i>, 
     257     * - 'function:$function_name': Invoke the globally available function $function_name, its signature is <i>boolean $function_name ($document, $topic)</i>, 
    258258     *   if you don't change the document during the check, you don't need to pass by-reference, so this is up to you. The topic passed is the 
    259259     *   Return true if the document is visible, false otherwise. 
     
    544544     * @param string $type The field's type. 
    545545     * @param string $content The field's content. 
    546      * @param bool $is_utf8 Set this to true explicitly, to override charset conversion and assume $content is UTF-8 already. 
     546     * @param boolean $is_utf8 Set this to true explicitly, to override charset conversion and assume $content is UTF-8 already. 
    547547     * @access protected 
    548548     */ 
     
    705705     * @see _set_type() 
    706706     * @param string $document_type The base type to search for. 
    707      * @return bool Indicationg relationship. 
     707     * @return boolean Indicationg relationship. 
    708708     */ 
    709709    function is_a($document_type)