mirror of
https://github.com/php/php-src.git
synced 2026-04-27 01:48:26 +02:00
49a3b03e9f
This is a minimal variance implementation: It does not support any cyclic type dependencies. Additionally the preloading requirements are much more restrictive than necessary. Hopefully we can relax these in the future.
42 lines
811 B
PHP
42 lines
811 B
PHP
<?php
|
|
|
|
// Requires X, delay to runtime.
|
|
// TODO: It is not actually required, because we don't need X to check inheritance in this case.
|
|
class A extends Z {
|
|
public function method(X $a) {}
|
|
}
|
|
class B extends Z {
|
|
public function method($a) : X {}
|
|
}
|
|
|
|
// Works.
|
|
class C extends Z {
|
|
public function method($a): self {}
|
|
public function method2($a): C {}
|
|
}
|
|
class D extends C {
|
|
public function method($a): self {}
|
|
public function method2($a): D {}
|
|
}
|
|
|
|
// Works.
|
|
interface I {}
|
|
interface J extends I {}
|
|
class E {
|
|
public function method($a): I {}
|
|
}
|
|
class F extends E {
|
|
public function method($a): J {}
|
|
}
|
|
|
|
// Requires K & L, delay to runtime.
|
|
class G {
|
|
public function method($a): K {}
|
|
}
|
|
class H extends G {
|
|
public function method($a): L {}
|
|
}
|
|
|
|
// Early-binding preventer.
|
|
class Z {}
|