PHP - Interfaces and Traits
Identify the error in this PHP code:
interface Shape { public function area(); }
class Circle implements Shape {
public function area($radius) { return 3.14 * $radius * $radius; }
}