]> granicus.if.org Git - php/commitdiff
Hopefully converted all TABs to SPACEs
authorSebastian Bergmann <sbergmann@php.net>
Thu, 28 Sep 2000 07:27:05 +0000 (07:27 +0000)
committerSebastian Bergmann <sbergmann@php.net>
Thu, 28 Sep 2000 07:27:05 +0000 (07:27 +0000)
pear/Timer.php

index 456e31c723cc6915957d56439d8f301935bbc373..15877665ef5e88e03acf39fb6b91905bd61ed632 100644 (file)
   * 
   *   $timer->profiling_information();
   * 
-  * @author      Sebastian Bergmann <sb@phpOpenTracker.de>
+  * @author   Sebastian Bergmann <sb@phpOpenTracker.de>
   * @version  1.0 28/09/00
-  * @access            public
+  * @access   public
   */
 
   class Timer
   {
     // {{{ properties
 
-       /**
-       * Contains the markers
-       * @var          array
-       * @access       public
-       */
+    /**
+    * Contains the markers
+    * @var    array
+    * @access public
+    */
 
     var $markers = array();
     
     // }}}
     // {{{ start()
 
-       /**
-       * Set "Start" marker.
-       * @brother stop()
-       * @access       public
-       */
+    /**
+    * Set "Start" marker.
+    * @brother  stop()
+    * @access   public
+    */
 
     function start()
     {
     // }}}
     // {{{ stop()
 
-       /**
-       * Set "Stop" marker.
-       * @brother start()
-       * @access       public
-       */
+    /**
+    * Set "Stop" marker.
+    * @brother  start()
+    * @access   public
+    */
 
     function stop()
     {
     // }}}
     // {{{ set_marker()
 
-       /**
-       * Set marker.
-       * @brother stop()
-       * @access       public
-       */
+    /**
+    * Set marker.
+    * @brother  stop()
+    * @access   public
+    */
 
     function set_marker( $name )
     {
     // }}}
     // {{{ time_elapsed()
 
-       /**
-       * Returns the time elapsed betweens two markers.
+    /**
+    * Returns the time elapsed betweens two markers.
     * @param  string  $start        start marker, defaults to "Start"
     * @param  string  $end          end marker, defaults to "Stop"
     * @return double  $time_elapsed time elapsed between $start and $end
-       * @access       public
-       */
+    * @access  public
+    */
 
     function time_elapsed( $start = "Start", $end = "Stop" )
     {
     // }}}
     // {{{ profiling_information()
 
-       /**
-       * Prints profiling information.
-       * @access       public
-       */
+    /**
+    * Prints profiling information.
+    * @access public
+    */
 
     function profiling_information()
     {