class Doctor{
function getName(){
return 'Вася';
}
function getAge(){
return 49;
}
}
class ReportDoctor{
function render(Doctor $doctor){
return 'Имя доктора: '.$doctor->getName
.', Возраст: '. $doctor->getAge();
}
}