Closed cretz closed 11 years ago
This:
class Test { arrayWithNewSyntax = new string[]; arrayWithoutNewSyntax: string[] = []; }
Becomes:
class Test { public $arrayWithNewSyntax; public $arrayWithoutNewSyntax = []; public function __construct() { $this->arrayWithNewSyntax = []; } }
This:
Becomes: