Changeset 465

Show
Ignore:
Timestamp:
09/01/2007 04:20:02 PM (15 months ago)
Author:
Geert
Message:

Cleaning up some comments

Location:
trunk/system/core
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/core/Benchmark.php

    r447 r465  
    1010         * @access  public 
    1111         * @param   string 
     12         * @return  void 
    1213         */ 
    1314        public static function start($name) 
     
    2829         * @access  public 
    2930         * @param   string 
     31         * @return  void 
    3032         */ 
    3133        public static function stop($name) 
  • trunk/system/core/Config.php

    r458 r465  
    3535         * @access  public 
    3636         * @param   string 
     37         * @param   boolean 
    3738         * @return  mixed 
    3839         */ 
     
    118119         * @access  public 
    119120         * @param   string 
     121         * @param   boolean 
    120122         * @return  array 
    121123         */ 
  • trunk/system/core/Event.php

    r447 r465  
    3333         * @param   string 
    3434         * @param   callback 
    35          * @param   mixed 
    3635         * @return  void 
    3736         */ 
    38         public static function add($name, $callback, $params = array()) 
     37        public static function add($name, $callback) 
    3938        { 
    4039                if ($name == FALSE OR $callback == FALSE) 
     
    4948         * @access  public 
    5049         * @param   string 
     50         * @param   array 
    5151         * @return  mixed 
    5252         */ 
  • trunk/system/core/Log.php

    r447 r465  
    55        public static $messages = array(); 
    66 
     7        /** 
     8         * Add a log message 
     9         * 
     10         * @access  public 
     11         * @param   string 
     12         * @param   string 
     13         * @return  void 
     14         */ 
    715        public static function add($type, $message) 
    816        { 
     
    1422        } 
    1523 
     24        /** 
     25         * Write log messages to file 
     26         * 
     27         * @access  public 
     28         * @return  void 
     29         */ 
    1630        public static function write() 
    1731        {