<?php declare(strict_types = 1); class HelloWorld { use Help; public function sayHello(DateTimeImutable $date): void { $this->attachTag(); } } trait Help { public function attachTag( string $type = self::class ): void { var_dump($type); } } $hw = new HelloWorld(); $hw->attachTag();
You have javascript disabled. You will not be able to edit any code.