<?php declare(strict_types=1); trait SomeAbility { public static function theClass(){ return static::class; } } class SomeThing { use SomeAbility; } class SomeOtherThing { use SomeAbility; } var_dump( SomeThing::theClass(), SomeOtherThing::theClass() );
You have javascript disabled. You will not be able to edit any code.