blob: 8d3a5d1598b31b186f80fdcfb0575a8d112ebdc4 [file]
<?php
trait A
{
public function getName ()
{
return 'A';
}
}
trait B
{
use A { getName as protected; }
}
?>