Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
structure
/
traitsStructure_02.php
blob: 256731eff8fee386073fd269656267b6e4cfe98d [
file
] [
log
] [
blame
]
<?
php
trait
MyTrait
{
public
$traitField
=
10
;
public
function
traitFoo
()
{}
}
trait
TraitedTrait
{
use
MyTrait
;
public
$secondFiled
=
20
;
public
function
secondFoo
()
{}
}
?>