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