php2go/fixtures/0007-interfaces.php

10 lines
95 B
PHP
Raw Normal View History

2020-04-07 09:53:00 +00:00
<?php
interface Base {
function Foo();
}
class Child implements Base {
function Foo() {}
}