driade / phpfmt8

PHP formatter for Sublime Text 4, with PHP 8 support.
BSD 3-Clause "New" or "Revised" License
46 stars 2 forks source link

__construct renamed #79

Open driade opened 1 month ago

driade commented 1 month ago

When we use a full namespace in "implements", this

Excel::raw(new class() implements \Excel\Concerns\FromArray {
    public function __construct()
    {}
});

becomes

Excel::raw(new class() implements \Excel\Concerns\FromArray
{
    public function Construct()
    {}
});

the "__construct" methid is renamed