35 541
modifications
function méthodeParente() {
print 'Je connais méthodeParente' . PHP_EOL;
}
}
function méthodeEnfant() {
print 'Je connais méthodeEnfant' . PHP_EOL;
}
}
function méthodeEnfant() {
parent::méthodeParente();
print 'Je connais
}
}
|
modifications