<?php
trait A{
public function a(){
echo "this is trait A a\n";
}
public function b(){
echo "this is trait A b\n";
}
}
class Test{
use A;
}
//$test = new Test();
//$test->a();
//$test->b();
trait B{
use A;
private $name = "xmz";
public function c(){
echo "this is B c\n";
}
public function getName(){
echo $this->name;
}
public function getMethodB(){
$this->b();
}
}
trait C{
public function cc(){
echo "this is trait c - cc";
}
}
class TestA{
use B,C;
public function test(){
echo "this is Test2 test2\n";
}
}
$test2 = new TestA();
$test2->a();
$test2->getMethodB();
$test2->test();
$test2->getName();
$test2->cc();