blob: 7cf77612935d27bbfcd023e2a31e01edc925b191 [file] [log] [blame]
<?php
interface FooInterface
{
public function someMethod(?string $string, int $int): ?self;
}
class Foo implements FooInterface
{
public function someMethod(?string $string, int $int) {
}
}