Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
bracematching
/
braceContextUseTraitTest.php
blob: 46041c3002781a6e22e10e1f210560e9a5a8a8e8 [
file
]
<?
php
trait
MyTrait
{
public
function
hello
()
{
echo
"hello"
;
}
}
class
MyClass
{
use
MyTrait
{
hello
as
protected
;
}
// use
}