PHP - Interfaces and Traits
Identify the error in this PHP code:
interface Printer {
public function print();
}
class Document implements Printer {
// Missing print() method
}