- Output for 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.26, 8.4.1 - 8.4.13
- Fatal error: Declaration of B::test(string $x): string must be compatible with A::test(int $x): int in /in/8cuXW on line 8
Process exited with code 255.
<?php
interface A {
static function test(int $x): int;
}
class B implements A {
static function test(string $x): string {
return $x;
}
}