php2go/fixtures/0007-interfaces.php

10 lines
95 B
PHP
Raw Normal View History

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