Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
structure
/
traitsStructure_01.php
blob: f3ea3bc6371591c47dd7d004db163d46f758d51b [
file
] [
log
] [
blame
]
<?
php
trait
MyTrait
{
public
$traitField
=
10
;
public
function
traitFoo
()
{}
}
class
TraitedClass
{
use
MyTrait
;
}
?>