<?php class TestClass { use TestTrait; } trait TestTrait { public function getSelf(): self { echo __CLASS__ . PHP_EOL; echo static::class . PHP_EOL; echo self::class . PHP_EOL; return $this; } } $test = new TestClass; var_dump($test->getSelf());
You have javascript disabled. You will not be able to edit any code.