PHP - Interfaces and Traits
Find the error in this code using traits:
trait Logger { function log() { echo 'Log'; } } class File { use Logger } $f = new File(); $f->log();