Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
gotodeclaration
/
testAnonymousClass02
/
testAnonymousClass02.php
blob: 4235157b646e27aaa99c00ed23b975cc86b149e6 [
file
]
<?
php
var_dump
(
new
class
{
public
function
testA
()
{
$this
->
testB
();
}
private
function
testB
()
{
echo
'testB'
.
PHP_EOL
;
}
});