Arquivos
hhvm/hphp/test/slow/function_no_param_modifier.php
T
Dario Russi ef99ac3445 Allow parameter promotion in constructors
Extend PHP to allow constructor paramters to be promoted to fields. Reduce plumbing of class declaration and helps productivity.
2013-07-06 11:12:21 -07:00

8 linhas
73 B
PHP

<?php
//
// function don't allow promotion
//
function f(public $a) {}