MediaWiki REL1_31
ProfilerOutput.php
Go to the documentation of this file.
1<?php
27abstract class ProfilerOutput {
29 protected $collector;
31 protected $params = [];
32
37 public function __construct( Profiler $collector, array $params ) {
38 $this->collector = $collector;
39 $this->params = $params;
40 }
41
46 public function canUse() {
47 return true;
48 }
49
55 abstract public function log( array $stats );
56}
Base class for profiling output.
canUse()
Can this output type be used?
array $params
Configuration of $wgProfiler.
log(array $stats)
Log MediaWiki-style profiling data.
__construct(Profiler $collector, array $params)
Profiler base class that defines the interface and some trivial functionality.
Definition Profiler.php:33