mirror of
https://github.com/php/php-src.git
synced 2026-03-31 20:53:00 +02:00
103 lines
2.0 KiB
PHP
103 lines
2.0 KiB
PHP
<?php
|
|
|
|
/** @generate-class-entries static */
|
|
|
|
namespace {
|
|
|
|
interface _ZendTestInterface
|
|
{
|
|
}
|
|
|
|
/** @alias _ZendTestClassAlias */
|
|
class _ZendTestClass implements _ZendTestInterface {
|
|
/** @var mixed */
|
|
public static $_StaticProp;
|
|
public static int $staticIntProp = 123;
|
|
|
|
public int $intProp = 123;
|
|
public ?stdClass $classProp = null;
|
|
public stdClass|Iterator|null $classUnionProp = null;
|
|
|
|
public static function is_object(): int {}
|
|
|
|
/** @deprecated */
|
|
public function __toString(): string {}
|
|
|
|
public function returnsStatic(): static {}
|
|
|
|
public function returnsThrowable(): Throwable {}
|
|
}
|
|
|
|
class _ZendTestChildClass extends _ZendTestClass
|
|
{
|
|
public function returnsThrowable(): Exception {}
|
|
}
|
|
|
|
trait _ZendTestTrait {
|
|
/** @var mixed */
|
|
public $testProp;
|
|
|
|
public function testMethod(): bool {}
|
|
}
|
|
|
|
final class ZendTestAttribute {
|
|
|
|
}
|
|
|
|
function zend_test_array_return(): array {}
|
|
|
|
function zend_test_nullable_array_return(): ?array {}
|
|
|
|
function zend_test_void_return(): void {}
|
|
|
|
/** @deprecated */
|
|
function zend_test_deprecated(mixed $arg = null): 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 {}
|
|
|
|
function zend_string_or_object(object|string $param): object|string {}
|
|
|
|
function zend_string_or_object_or_null(object|string|null $param): object|string|null {}
|
|
|
|
/** @param stdClass|string $param */
|
|
function zend_string_or_stdclass($param): stdClass|string {}
|
|
|
|
/** @param stdClass|string|null $param */
|
|
function zend_string_or_stdclass_or_null($param): stdClass|string|null {}
|
|
|
|
function zend_iterable(iterable $arg1, ?iterable $arg2 = null): void {}
|
|
|
|
}
|
|
|
|
namespace ZendTestNS {
|
|
|
|
class Foo {
|
|
public function method(): void {}
|
|
}
|
|
|
|
}
|
|
|
|
namespace ZendTestNS2 {
|
|
|
|
class Foo {
|
|
public function method(): void {}
|
|
}
|
|
|
|
}
|
|
|
|
namespace ZendTestNS2\ZendSubNS {
|
|
|
|
class Foo {
|
|
public function method(): void {}
|
|
}
|
|
|
|
function namespaced_func(): bool {}
|
|
|
|
}
|