You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class HostTrait
{
use TraitA;
use TraitB;
}
// Create first instance$hostTrait1 = newHostTrait();
// Create second instance$hostTrait2 = newHostTrait();
Yii behaviors
Generally
class HostBhvr
{
}
// Create first instance$hostBhvr1 = newHostBhvr();
$hostBhvr1->attachBehavior('bhvr1', newBhvr1());
$hostBhvr1->attachBehavior('bhvr2', newBhvr2());
// Create second instance$hostBhvr2 = newHostBhvr();
$hostBhvr2->attachBehavior('bhvr1', newBhvr1());
$hostBhvr2->attachBehavior('bhvr2', newBhvr2());