10 lines
95 B
PHP
10 lines
95 B
PHP
<?php
|
|
|
|
interface Base {
|
|
function Foo();
|
|
}
|
|
|
|
class Child implements Base {
|
|
function Foo() {}
|
|
}
|