]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - includes/profiler/ProfileSection.php
MediaWiki 1.30.2-scripts
[autoinstalls/mediawiki.git] / includes / profiler / ProfileSection.php
1 <?php
2 /**
3  * Function scope profiling assistant
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  * http://www.gnu.org/copyleft/gpl.html
19  *
20  * @file
21  * @ingroup Profiler
22  */
23
24 /**
25  * Class for handling function-scope profiling
26  *
27  * @since 1.22
28  * @deprecated since 1.25 No-op now
29  */
30 class ProfileSection {
31         /**
32          * Begin profiling of a function and return an object that ends profiling
33          * of the function when that object leaves scope. As long as the object is
34          * not specifically linked to other objects, it will fall out of scope at
35          * the same moment that the function to be profiled terminates.
36          *
37          * This is typically called like:
38          * @code$section = new ProfileSection( __METHOD__ );@endcode
39          *
40          * @param string $name Name of the function to profile
41          */
42         public function __construct( $name ) {
43                 wfDeprecated( __CLASS__, '1.25' );
44         }
45 }