mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
During preloading, check that all classes that have been included as part of the preload script itself (rather than through opcache_compile_file) can actually be preloaded, i.e. satisfy Windows restrictions, have resolved initializers and resolved property types. When resolving initializers and property types, also autoload additional classes. Because of this, the resolution runs in a loop.
6 lines
47 B
PHP
6 lines
47 B
PHP
<?php
|
|
|
|
class Test {
|
|
protected Foo $prop;
|
|
}
|