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

Invalid visibility added to function #53

Closed driade closed 1 year ago

driade commented 1 year ago

This

namespace B {
    class ProgressBar {
    }

    interface Cacher {
    }

    function test() {}
}

becomes

namespace B {
    class ProgressBar
    {
    }

    interface Cacher
    {
    }

    public function test()
    {}
}

The "public" visibility is added