Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
issue211165_08.php
blob: ef0201d80975afe94c0c2bd941d3fce40bf31982 [
file
]
<?
php
abstract
class
Person
{
$this
->
age
;
//a mistake
abstract
function
customizedFunction
()
{}
function
getAge
()
{
return
$this
->
age
;
}
function
setAge
(
$age
)
{
$this
->
age
=
$age
;
}
}
?>