Sign in
apache
/
netbeans
/
3f277361c3bdd1d5120c7a7654e8acb61994283a
/
.
/
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
()
{}
}
?>