Hmm... I just put mine between the rename() and trade() functions that already existed. *shrug* At the end of the file the function will end, then class will end, and then the file will end, so:
PHP Code:
class MyadoptsView extends View{ # this is actually at the start of the file
public function editbio(){
/*....*/
} # ends the function
} # ends the class that begins at the start of the file
?>
Ah, but the second part of step three, there is a version of editBio() in the non-view version of the file. Without it, I think you'd get the error you have, too.