php2go/fixtures/0007-interfaces.php
2020-04-07 21:53:00 +12:00

10 lines
95 B
PHP

<?php
interface Base {
function Foo();
}
class Child implements Base {
function Foo() {}
}