ef99ac3445
Extend PHP to allow constructor paramters to be promoted to fields. Reduce plumbing of class declaration and helps productivity.
11 linhas
116 B
PHP
11 linhas
116 B
PHP
<?php
|
|
|
|
//
|
|
// field redeclaration, error
|
|
//
|
|
class A {
|
|
public $c;
|
|
public function __construct(protected $c) {}
|
|
}
|
|
|