/php-src/Zend/tests/lazy_objects/ |
H A D | reset_as_lazy_accepts_sub_classes.phpt | 15 $reflector->resetAsLazyGhost(new A(), function () {}); 16 $reflector->resetAsLazyGhost(new B(), function () {}); 19 $reflector->resetAsLazyGhost(new C(), function () {}); 27 TypeError: ReflectionClass::resetAsLazyGhost(): Argument #1 ($object) must be of type A, C given
|
H A D | reset_as_lazy_ignores_additional_props.phpt | 35 $reflector->resetAsLazyGhost($obj, function () {}); 46 $reflector->resetAsLazyGhost($obj, function () {}); 56 $reflector->resetAsLazyGhost($obj, function ($obj) {
|
H A D | reset_as_lazy_while_init_exception.phpt | 15 $reflector->resetAsLazyGhost($obj, function ($obj) use ($reflector) { 17 $reflector->resetAsLazyGhost($obj, function () { }); 40 $reflector->resetAsLazyGhost($obj, function () { });
|
H A D | reset_as_lazy_already_exception.phpt | 15 $reflector->resetAsLazyGhost($obj, function () {}); 18 $reflector->resetAsLazyGhost($obj, function ($obj) {
|
H A D | invalid_options.phpt | 34 $reflector->resetAsLazyGhost($obj, function ($obj) { }, -1); 50 ReflectionException: ReflectionClass::resetAsLazyGhost(): Argument #3 ($options) contains invalid f…
|
H A D | realize_no_props.phpt | 25 (new ReflectionClass($obj))->resetAsLazyGhost($obj, function ($obj) { 31 (new ReflectionClass($obj2))->resetAsLazyGhost($obj2, function ($obj2) {
|
H A D | gc_001.phpt | 20 (new ReflectionClass($obj))->resetAsLazyGhost($obj, function () use ($canary) {
|
H A D | gc_002.phpt | 22 (new ReflectionClass($obj))->resetAsLazyGhost($obj, function () use ($canary) {
|
H A D | gc_003.phpt | 22 (new ReflectionClass($obj))->resetAsLazyGhost($obj, function () use ($canary) {
|
H A D | gc_004.phpt | 22 (new ReflectionClass($obj))->resetAsLazyGhost($obj, function () use ($canary) {
|
H A D | gc_005.phpt | 24 $reflector->resetAsLazyGhost($obj, function () use ($canary) {
|
H A D | reset_as_lazy_calls_destructor.phpt | 24 $reflector->resetAsLazyGhost($obj, function ($obj) {
|
H A D | reset_as_lazy_destructor_exception.phpt | 24 $reflector->resetAsLazyGhost($obj, function ($obj) {
|
H A D | reset_as_lazy_may_skip_destructor.phpt | 24 $reflector->resetAsLazyGhost($obj, function ($obj) {
|
H A D | reset_as_lazy_readonly.phpt | 37 $reflector->resetAsLazyGhost($obj, function ($obj) {
|
H A D | reset_as_lazy_resets_dynamic_props.phpt | 25 $reflector->resetAsLazyGhost($obj, function ($obj) {
|
H A D | reset_as_lazy_deletes_reference_source_type.phpt | 25 $reflector->resetAsLazyGhost($obj, function ($obj) {
|
/php-src/Zend/tests/lazy_objects/rfc/ |
H A D | rfc_example_007.phpt | 16 $reflector->resetAsLazyGhost($object, function () {});
|
H A D | rfc_example_003.phpt | 13 … $reflector->resetAsLazyGhost($this, $this->initialize(...), ReflectionClass::SKIP_DESTRUCTOR);
|
H A D | rfc_example_009.phpt | 27 $reflector->resetAsLazyGhost($connection, function () {
|
/php-src/ext/reflection/ |
H A D | php_reflection.stub.php | 377 … public function resetAsLazyGhost(object $object, callable $initializer, int $options = 0): void {} function in ReflectionClass
|
H A D | php_reflection_arginfo.h | 830 ZEND_METHOD(ReflectionClass, resetAsLazyGhost); 1121 …ZEND_ME(ReflectionClass, resetAsLazyGhost, arginfo_class_ReflectionClass_resetAsLazyGhost, ZEND_AC…
|
H A D | php_reflection.c | 5120 PHP_METHOD(ReflectionClass, resetAsLazyGhost) in PHP_METHOD() argument
|
/php-src/ext/reflection/tests/ |
H A D | ReflectionClass_toString_001.phpt | 353 Method [ <internal:Reflection> public method resetAsLazyGhost ] {
|