<?php namespace a\b\c\d; trait foo { public function x() { echo __NAMESPACE__; } } class bar { use foo; } echo (new bar())->x();
You have javascript disabled. You will not be able to edit any code.