ef99ac3445
Extend PHP to allow constructor paramters to be promoted to fields. Reduce plumbing of class declaration and helps productivity.
10 linhas
107 B
PHP
10 linhas
107 B
PHP
<?php
|
|
|
|
//
|
|
// only constructors can promote parameters
|
|
//
|
|
class A {
|
|
public function f(protected $c) {}
|
|
}
|
|
|