Browse Source

Improve internal documentation of benchmark class.

Taylor Otwell 13 years ago
parent
commit
3ba3089208
1 changed files with 14 additions and 1 deletions
  1. 14 1
      system/benchmark.php

+ 14 - 1
system/benchmark.php

@@ -3,7 +3,7 @@
 class Benchmark {
 
 	/**
-	 * Benchmark starting times.
+	 * All of the benchmark starting times.
 	 *
 	 * @var array
 	 */
@@ -12,8 +12,16 @@ class Benchmark {
 	/**
 	 * Start a benchmark.
 	 *
+	 * After starting a benchmark, the elapsed time in milliseconds can be
+	 * retrieved using the "check" method.
+	 *
+	 * <code>
+	 * Benchmark::start('name');
+	 * </code>
+	 *
 	 * @param  string  $name
 	 * @return void
+	 * @see    check
 	 */
 	public static function start($name)
 	{
@@ -23,8 +31,13 @@ class Benchmark {
 	/**
 	 * Get the elapsed time in milliseconds since starting a benchmark.
 	 *
+	 * <code>
+	 * echo Benchmark::check('name');
+	 * </code>
+	 *
 	 * @param  string  $name
 	 * @return float
+	 * @see    start
 	 */
 	public static function check($name)
 	{