Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
gotodeclaration
/
testAnonymousClass04
/
testAnonymousClass04.php
blob: 3c1e24727406820d314234a2be2ccfffcb5be943 [
file
]
<?
php
class
SomeClass
{
}
interface
SomeInterface
{
}
trait
SomeTrait
{
}
var_dump
(
new
class
(
10
)
extends
SomeClass
implements
SomeInterface
{
private
$num
;
public
function
__construct
(
$num
)
{
$this
->
num
=
$num
;
}
use
SomeTrait
;
});