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