blob: 46041c3002781a6e22e10e1f210560e9a5a8a8e8 [file]
<?php
trait MyTrait
{
public function hello() {
echo "hello";
}
}
class MyClass {
use MyTrait
{
hello as protected;
} // use
}