ef99ac3445
Extend PHP to allow constructor paramters to be promoted to fields. Reduce plumbing of class declaration and helps productivity.
7 linhas
61 B
PHP
7 linhas
61 B
PHP
<?hh
|
|
|
|
class A {
|
|
function __construct<T>(public T $f) {}
|
|
}
|
|
|