php2go/fixtures/0007-interfaces.php

10 lines
95 B
PHP

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