blob: adcbcc9bb5367dcd8750583c942611c48caf6ec8 [file]
<?php
interface Foo {
function myFoo(): Foo;
}
class Bar implements Foo {
}