<?php trait Foo { public const CONSTANT = 1; public function bar(): int { return Foo::CONSTANT; // Fatal error } } class Bar { use Foo; } var_dump(Bar::CONSTANT); // 1 $bar = new Bar(); $bar->bar();
You have javascript disabled. You will not be able to edit any code.