PHP - Classes and Objects
Find the error in this PHP code snippet:
class Example {
protected function show() {
echo 'Hello';
}
}
$obj = new Example();
$obj->show();