blob: eb16199f8a5ad90bd9a990df988a864fce164ee5 [file] [log] [blame]
<?php
interface MyIface {
const FOO = 12;
public static function functionName();
public function doSomething();
}
interface MySecondIface extends MyIface {
const BAR = 25;
public static function anotherStatic();
public function doAnything();
}
?>