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.php

    r14179 r14329  
    6363     * 
    6464     * @access private 
    65      * @var bool 
     65     * @var boolean 
    6666     */ 
    6767    var $_disabled = false; 
     
    101101     * Simple helper, returns true if the indexer service is online, false if it is disabled. 
    102102     * 
    103      * @return bool Service state. 
     103     * @return boolean Service state. 
    104104     */ 
    105105    function enabled() 
     
    122122     * @param mixed $documents One or more documents to be indexed, so this is either a 
    123123     *            midcom_services_indexer_document or an Array of these objects. 
    124      * @return bool Indicating success. 
     124     * @return boolean Indicating success. 
    125125     */ 
    126126    function index ($documents) 
     
    177177     * @param object $object A reference to the supported object types which allow for automatic 
    178178     *     casting (see above). 
    179      * @return bool Indicating success. 
     179     * @return boolean Indicating success. 
    180180     * @access protected 
    181181     */ 
     
    207207     * 
    208208     * @param string $RI The resource identifier of the document that should be deleted. 
    209      * @return bool Indicating success. 
     209     * @return boolean Indicating success. 
    210210     */ 
    211211    function delete ($RI) 
     
    224224     * This will drop the current index. 
    225225     * 
    226      * @return bool Indicating success. 
     226     * @return boolean Indicating success. 
    227227     */ 
    228228    function delete_all()