-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventProfiler.php
49 lines (43 loc) · 961 Bytes
/
EventProfiler.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
namespace ICanBoogie;
use function microtime;
/**
* Profiling information about events.
*/
final class EventProfiler
{
/**
* Unused event types.
*
* ```php
* [ $time, $type ] = $value;
* ````
*
* @var array<array{ float, string }>
*/
public static array $unused = [];
/**
* Adds an unused event type.
*/
public static function add_unused(string $type): void
{
self::$unused[] = [ microtime(true), $type ];
}
/**
* Event hooks calls.
*
* ```php
* [ $time, $type, $hook, $started_at ] = $value;
* ```
*
* @var array<array{ float, string, callable, float }>
*/
public static array $calls = [];
/**
* Adds an event hook call.
*/
public static function add_call(string $type, callable $hook, float $started_at): void
{
self::$calls[] = [ microtime(true), $type, $hook, $started_at ];
}
}