PHP - Interfaces and Traits
Find the problem in this PHP code snippet:
interface Printer { public function print(); }
class Document implements Printer {
public function print($text) { echo $text; }
}