Changeset 32990 for trunk/tests/phpunit/includes/wp-profiler.php
- Timestamp:
- 06/28/2015 03:26:41 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/includes/wp-profiler.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/wp-profiler.php
r29789 r32990 22 22 var $profile; 23 23 24 // constructor 25 function WPProfiler() { 24 /** 25 * PHP5 constructor. 26 */ 27 function __construct() { 26 28 $this->stack = array(); 27 29 $this->profile = array(); 30 } 31 32 /** 33 * PHP4 constructor. 34 */ 35 public function WPProfiler() { 36 self::__construct(); 28 37 } 29 38
Note: See TracChangeset
for help on using the changeset viewer.