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