1 | <?php |
||
23 | trait AutoConstructTrait |
||
24 | { |
||
25 | use HasReflectorTrait; |
||
26 | |||
27 | /** |
||
28 | * Creates a new instance of this class, auto constructing the |
||
29 | * properties using a PropertyAccessor |
||
30 | */ |
||
31 | 1 | public function __construct(...$args) |
|
35 | |||
36 | /** |
||
37 | * Creates a new instance of this class, auto constructing the |
||
38 | * properties using a PropertyAccessor |
||
39 | */ |
||
40 | 1 | protected function autoBuild(...$args) |
|
45 | } |
||
46 | |||
47 |