Changeset 465
- Timestamp:
- 09/01/2007 04:20:02 PM (15 months ago)
- Location:
- trunk/system/core
- Files:
-
- 4 modified
-
Benchmark.php (modified) (2 diffs)
-
Config.php (modified) (2 diffs)
-
Event.php (modified) (2 diffs)
-
Log.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/core/Benchmark.php
r447 r465 10 10 * @access public 11 11 * @param string 12 * @return void 12 13 */ 13 14 public static function start($name) … … 28 29 * @access public 29 30 * @param string 31 * @return void 30 32 */ 31 33 public static function stop($name) -
trunk/system/core/Config.php
r458 r465 35 35 * @access public 36 36 * @param string 37 * @param boolean 37 38 * @return mixed 38 39 */ … … 118 119 * @access public 119 120 * @param string 121 * @param boolean 120 122 * @return array 121 123 */ -
trunk/system/core/Event.php
r447 r465 33 33 * @param string 34 34 * @param callback 35 * @param mixed36 35 * @return void 37 36 */ 38 public static function add($name, $callback , $params = array())37 public static function add($name, $callback) 39 38 { 40 39 if ($name == FALSE OR $callback == FALSE) … … 49 48 * @access public 50 49 * @param string 50 * @param array 51 51 * @return mixed 52 52 */ -
trunk/system/core/Log.php
r447 r465 5 5 public static $messages = array(); 6 6 7 /** 8 * Add a log message 9 * 10 * @access public 11 * @param string 12 * @param string 13 * @return void 14 */ 7 15 public static function add($type, $message) 8 16 { … … 14 22 } 15 23 24 /** 25 * Write log messages to file 26 * 27 * @access public 28 * @return void 29 */ 16 30 public static function write() 17 31 {
