<?php
trait foo {

}

trait bar {

}

trait baz {

}

$trait = 'foo';
echo $this->trait;
echo Something::$trait;
echo $trait;
