xref: /php-src/sapi/phpdbg/phpdbg.stub.php (revision 06f86bfc)
1<?php
2
3/** @generate-class-entries */
4
5/**
6 * @var string
7 * @cvalue PHPDBG_VERSION
8 */
9const PHPDBG_VERSION = UNKNOWN;
10
11/**
12 * @var int
13 * @cvalue PHPDBG_COLOR_PROMPT
14 */
15const PHPDBG_COLOR_PROMPT = UNKNOWN;
16/**
17 * @var int
18 * @cvalue PHPDBG_COLOR_NOTICE
19 */
20const PHPDBG_COLOR_NOTICE = UNKNOWN;
21/**
22 * @var int
23 * @cvalue PHPDBG_COLOR_ERROR
24 */
25const PHPDBG_COLOR_ERROR = UNKNOWN;
26
27function phpdbg_break_next(): void {}
28
29function phpdbg_break_file(string $file, int $line): void {}
30
31function phpdbg_break_method(string $class, string $method): void {}
32
33function phpdbg_break_function(string $function): void {}
34
35function phpdbg_color(int $element, string $color): void {}
36
37function phpdbg_prompt(string $string): void {}
38
39function phpdbg_exec(string $context): string|bool {}
40
41function phpdbg_clear(): void {}
42
43function phpdbg_start_oplog(): void {}
44
45function phpdbg_end_oplog(array $options = []): ?array {}
46
47function phpdbg_get_executable(array $options = []): array {}
48