php-basics-revision [topic-name: traits,static methods and properties]
traits:
php only supported single inheritance , a child class can inherit from one single Parent class ,if we need multiple behaviours from more then one class,traits solve this problem .
trait message1
{
public function msg1()
{
echo...
php-basics-revisions.hashnode.dev2 min read