-
Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy pathphpdbg.stub.php
47 lines (33 loc) · 974 Bytes
/
phpdbg.stub.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
<?php
/** @generate-class-entries */
/**
* @var string
* @cvalue PHPDBG_VERSION
*/
const PHPDBG_VERSION = UNKNOWN;
/**
* @var int
* @cvalue PHPDBG_COLOR_PROMPT
*/
const PHPDBG_COLOR_PROMPT = UNKNOWN;
/**
* @var int
* @cvalue PHPDBG_COLOR_NOTICE
*/
const PHPDBG_COLOR_NOTICE = UNKNOWN;
/**
* @var int
* @cvalue PHPDBG_COLOR_ERROR
*/
const PHPDBG_COLOR_ERROR = UNKNOWN;
function phpdbg_break_next(): void {}
function phpdbg_break_file(string $file, int $line): void {}
function phpdbg_break_method(string $class, string $method): void {}
function phpdbg_break_function(string $function): void {}
function phpdbg_color(int $element, string $color): void {}
function phpdbg_prompt(string $string): void {}
function phpdbg_exec(string $context): string|bool {}
function phpdbg_clear(): void {}
function phpdbg_start_oplog(): void {}
function phpdbg_end_oplog(array $options = []): ?array {}
function phpdbg_get_executable(array $options = []): array {}