ef99ac3445
Extend PHP to allow constructor paramters to be promoted to fields. Reduce plumbing of class declaration and helps productivity.
8 linhas
73 B
PHP
8 linhas
73 B
PHP
<?php
|
|
|
|
//
|
|
// function don't allow promotion
|
|
//
|
|
function f(public $a) {}
|
|
|