X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fprofiler%2FProfileSection.php;h=32daeed4bf5ea502378a55387edaac53f357dcec;hb=356b3420d6908f91510aa0cd94f3a363be7f8999;hp=68ef668089dc261bf96e3ecb116037784551c910;hpb=8fe5a94aa059bf93ba1b00fde84ae6b1edf831fd;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/profiler/ProfileSection.php b/includes/profiler/ProfileSection.php index 68ef668089..32daeed4bf 100644 --- a/includes/profiler/ProfileSection.php +++ b/includes/profiler/ProfileSection.php @@ -25,7 +25,7 @@ * Class for handling function-scope profiling * * @since 1.22 - * @deprecated 1.25 No-op now + * @deprecated since 1.25 No-op now */ class ProfileSection { /** @@ -35,9 +35,10 @@ class ProfileSection { * the same moment that the function to be profiled terminates. * * This is typically called like: - * $section = new ProfileSection( __METHOD__ ); + * @code$section = new ProfileSection( __METHOD__ );@endcode * * @param string $name Name of the function to profile */ - public function __construct( $name ) {} + public function __construct( $name ) { + } }