PHP - Inheritance and Polymorphism
Identify the mistake in the following PHP code snippet:
class Base {
public function __construct() {
echo "Base initialized\n";
}
}
class Derived extends Base {
public function __construct() {
parent::__construct;
echo "Derived initialized\n";
}
}