PHP - Inheritance and Polymorphism
Find the error in this PHP code:
abstract class Fruit {
abstract protected function color();
}
class Apple extends Fruit {
public function color() {
return "Red";
}
}