<?php trait SkipAssignInConstruct2 { /** * @var bool */ public $property; public function __construct(bool $property) { $this->property = $property; } } class Foo { use SkipAssignInConstruct2; public function __construct() { } } var_dump((new Foo())->property);
You have javascript disabled. You will not be able to edit any code.