Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
gotodeclaration
/
testFieldAccessInInstanceOf
/
testFieldAccessInInstanceOf.php
blob: 2d15414d2daa4ec099fd3d87150a73abfb04cab1 [
file
]
<?
php
class
Cls
{
public
$bbbbb
;
public
function
__construct
()
{
if
(
$a
instanceof
$this
->
bbbbb
)
{}
}
}
?>