Changeset 1235

Show
Ignore:
Timestamp:
11/04/06 22:47:21 (2 years ago)
Author:
dominik
Message:

phpdoc fixes

Location:
trunk/src/action
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/action/AgaviActionStack.class.php

    r881 r1235  
    8282   * Retrieve the first entry. 
    8383   * 
    84    * @return     AgaviActionStackEntry An action stack entry implementation. 
     84   * @return     AgaviActionStackEntry An action stack entry implementation or  
     85   *                                   null if the action stack is empty. 
    8586   * 
    8687   * @author     Sean Kerr <skerr@mojavi.org> 
     
    100101   * Retrieve the last entry. 
    101102   * 
    102    * @return     AgaviActionStackEntry An action stack entry implementation. 
     103   * @return     AgaviActionStackEntry An action stack entry implementation or  
     104   *                                   null if the action stack is empty. 
    103105   * 
    104106   * @author     Sean Kerr <skerr@mojavi.org> 
  • trunk/src/action/AgaviActionStackEntry.class.php

    r1086 r1235  
    153153   
    154154  /** 
    155    * Retrieve this entry's module name. 
    156    * 
    157    * @return     string A module name. 
     155   * Retrieve this entry's view name. 
     156   * 
     157   * @return     string A view name. 
    158158   * 
    159159   * @author     David Zuelke <dz@bitxtender.com> 
     
    166166   
    167167  /** 
    168    * Retrieve this entry's module name. 
    169    * 
    170    * @return     string A module name. 
     168   * Retrieve this entry's view module name. This is the name of the module of  
     169   * the View returned by the Action. 
     170   * 
     171   * @return     string A view module name. 
    171172   * 
    172173   * @author     David Zuelke <dz@bitxtender.com> 
     
    179180   
    180181  /** 
    181    * Retrieve this entry's module name. 
    182    * 
    183    * @return     string A module name. 
     182   * Set the module name for this entry. 
     183   * 
     184   * @return     string A view name. 
    184185   * 
    185186   * @author     David Zuelke <dz@bitxtender.com> 
     
    192193   
    193194  /** 
    194    * Retrieve this entry's module name. 
    195    * 
    196    * @return     string A module name. 
     195   * Set the view module name for this entry. 
     196   * 
     197   * @return     string A view module name. 
    197198   * 
    198199   * @author     David Zuelke <dz@bitxtender.com> 
     
    207208   * Retrieve the request parameters for this Action. 
    208209   * 
    209    * @return     AgaviParameterHolder An AgaviParameterHolder of request parameters for this Action. 
     210   * @return     AgaviParameterHolder An AgaviParameterHolder of request  
     211   *                                  parameters for this Action. 
    210212   * 
    211213   * @author     David Zuelke <dz@bitxtender.com>