Merge "Improve docs for Title::getInternalURL/getCanonicalURL"
[lhc/web/wiklou.git] / .phan / stubs / excimer.php
1 <?php
2
3 // phpcs:ignoreFile
4
5 define( 'EXCIMER_REAL', 0 );
6 define( 'EXCIMER_CPU', 1 );
7
8 class ExcimerProfiler {
9 public function __construct() {
10 }
11 public function setPeriod( $period ) {
12 }
13 public function setEventType( $event_type ) {
14 }
15 public function setMaxDepth( $maxDepth ) {
16 }
17 public function setFlushCallback( $callback, $max_samples ) {
18 }
19 public function clearFlushCallback() {
20 }
21 public function start() {
22 }
23 public function stop() {
24 }
25 public function getLog() {
26 }
27 public function flush() {
28 }
29 }
30
31 class ExcimerLog {
32 private final function __construct() {
33 }
34 function formatCollapsed() {
35 }
36 function aggregateByFunction() {
37 }
38 function getEventCount() {
39 }
40 function current() {
41 }
42 function key() {
43 }
44 function next() {
45 }
46 function rewind() {
47 }
48 function valid() {
49 }
50 function count() {
51 }
52 function offsetExists( $offset ) {
53 }
54 function offsetGet( $offset ) {
55 }
56 function offsetSet( $offset, $value ) {
57 }
58 function offsetUnset( $offset ) {
59 }
60
61 }
62
63 class ExcimerLogEntry {
64 private final function __construct() {
65 }
66 function getTimestamp() {
67 }
68 function getEventCount() {
69 }
70 function getTrace() {
71 }
72 }
73
74 class ExcimerTimer {
75 function setEventType( $event_type ) {
76 }
77 function setInterval( $interval ) {
78 }
79 function setPeriod( $period ) {
80 }
81 function setCallback( $callback ) {
82 }
83 function start() {
84 }
85 function stop() {
86 }
87 function getTime() {
88 }
89 }