Changeset 14330

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

Leftover PHPdoc fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/midcom.core/midcom/baseclasses/components/handler.php

    r14133 r14330  
    150150     * topic <i>we're currently operating on.</i> 
    151151     * 
    152      * @param midcom_baseclasses_components_request $master A reference to the request class 
     152     * @param midcom_baseclasses_components_request &$master A reference to the request class 
    153153     *     handling the request. 
    154154     */ 
  • trunk/midcom/midcom.core/midcom/baseclasses/components/navigation.php

    r14329 r14330  
    227227     * 
    228228     * @param MidgardTopic $topic The topic to process. 
    229      * @param boolean Indicating success. 
     229     * @return boolean Indicating success. 
    230230     */ 
    231231    public function set_object($topic) 
  • trunk/midcom/midcom.core/midcom/core/collector.php

    r14329 r14330  
    406406     * @param mixed $value The value to compare against. It should be of the same type then the 
    407407     *     queried property. 
    408      * @param boolean Indicating success. 
     408     * @return boolean Indicating success. 
    409409     */ 
    410410    function add_constraint($field, $operator, $value) 
     
    441441     * @param string $ordering One of 'ASC' or 'DESC' indicating ascending or descending 
    442442     *     ordering. The default is 'ASC'. 
    443      * @param boolean Indicating success. 
     443     * @return boolean Indicating success. 
    444444     */ 
    445445    function add_order($field, $ordering = null) 
  • trunk/midcom/midcom.core/midcom/core/querybuilder.php

    r14329 r14330  
    682682     * @param mixed $value The value to compare against. It should be of the same type then the 
    683683     *     queried property. 
    684      * @param boolean Indicating success. 
     684     * @return boolean Indicating success. 
    685685     */ 
    686686    function add_constraint($field, $operator, $value) 
     
    722722     * @param string $ordering One of 'ASC' or 'DESC' indicating ascending or descending 
    723723     *     ordering. The default is 'ASC'. 
    724      * @param boolean Indicating success. 
     724     * @return boolean Indicating success. 
    725725     */ 
    726726    function add_order($field, $ordering = null) 
  • trunk/midcom/midcom.core/midcom/services/cache/module/phpscripts.php

    r14329 r14330  
    140140     * @param string $code The code to add to the cache, it must <i>not</i> include the php  
    141141     *     opening/closing tags, they will be added automatically during cache file creation. 
    142      * @param boolean Indicating success. 
     142     * @return boolean Indicating success. 
    143143     */ 
    144144    function add($identifier, $code)