/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
php-8.3.25
sapi/phpdbg/phpdbg.stub.php
47 строк
974 B
Máté Kocsis
Declare phpdbg constants in stubs (#9392)
21 авг 2022, 20:05
Не верифицирован
21 авг 2022, 20:05
06f86bf
Код
Авторство
О чём код?
<?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 {}