mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
31 lines
681 B
PHP
31 lines
681 B
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
class _ZendTestClass {
|
|
public static function is_object(): int {}
|
|
|
|
/** @deprecated */
|
|
public function __toString(): string {}
|
|
}
|
|
|
|
trait _ZendTestTrait {
|
|
public function testMethod(): bool {}
|
|
}
|
|
|
|
function zend_test_array_return(): array {}
|
|
|
|
function zend_test_nullable_array_return(): ?array {}
|
|
|
|
function zend_test_void_return(): void {}
|
|
|
|
/** @deprecated */
|
|
function zend_test_deprecated(): void {}
|
|
|
|
function zend_create_unterminated_string(string $str): string {}
|
|
|
|
function zend_terminate_string(string &$str): void {}
|
|
|
|
function zend_leak_variable(mixed $variable): void {}
|
|
|
|
function zend_leak_bytes(int $bytes = 3): void {}
|