diff options
Diffstat (limited to 'maintenance/benchmarks/bench_HTTP_HTTPS.php')
-rw-r--r-- | maintenance/benchmarks/bench_HTTP_HTTPS.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/maintenance/benchmarks/bench_HTTP_HTTPS.php b/maintenance/benchmarks/bench_HTTP_HTTPS.php index cf62aadb..fa76ae22 100644 --- a/maintenance/benchmarks/bench_HTTP_HTTPS.php +++ b/maintenance/benchmarks/bench_HTTP_HTTPS.php @@ -1,6 +1,8 @@ <?php /** - * This come from r75429 message + * Benchmark HTTP request vs HTTPS request. + * + * This come from r75429 message. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -22,7 +24,13 @@ * @author Platonides */ -require_once( dirname( __FILE__ ) . '/Benchmarker.php' ); +require_once( __DIR__ . '/Benchmarker.php' ); + +/** + * Maintenance script that benchmarks HTTP request vs HTTPS request. + * + * @ingroup Benchmark + */ class bench_HTTP_HTTPS extends Benchmarker { public function __construct() { |