blob: c430ef91cdc0b09f26005559ab2f036ffc7e2a25 [file] [log] [blame]
<?php
interface Iface {
function test1();
}
$a = new class implements Iface {
public function test1() {
}
};