Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
gotodeclaration
/
testAnonymousClass07
/
testAnonymousClass07.php
blob: a7be6ddb238a8312676ed56bbcde50221a152ce9 [
file
]
<?
php
namespace
api
;
interface
Logger
{
function
log
(
$msg
);
}
namespace
impl
;
use
api\Logger
as
MyLogger
;
$x
=
new
class
implements
MyLogger
{
public
function
log
(
$msg
)
{
}
};
$x
->
log
(
'');