If I call $object->showSomething() and the showSomething method doesn\'t exist I get a fata error. That\'s OK.
$object->showSomething()
showSomething
But I have a show()
show()
Try something like this:
showStuff(); $test->showMoreStuff(' and me too'); $test->showEvenMoreStuff(); $test->thisDoesNothing();
Output:
StuffMoreStuff and me tooEvenMoreStuff