Sign in
apache
/
netbeans
/
419f65eb0cccf624032c1c4925bf8d58069043ae
/
.
/
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
;
}
}
?>