PHP - Interfaces and Traits
What will be the output of this PHP code?
trait Logger { function log() { echo 'Logging'; } } class User { use Logger; } $u = new User(); $u->log();