Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

conts not formatted at all #99

Closed
daidaiworm opened this issue Jan 23, 2023 · 1 comment
Closed

conts not formatted at all #99

daidaiworm opened this issue Jan 23, 2023 · 1 comment

Comments

@daidaiworm
Copy link

daidaiworm commented Jan 23, 2023

<?php

class NullNothig
{
    const age =125;
                const A =5;
const a =6;
    const AGGGD=4;
    const ABC=18;
    const AGENAME=666;

    public function age()
    {}
    function name_user(){}
}

it should be formatted like this.


<?php

class NullNothig
{
    const AGE     = 125;
    const A       = 5;
    const A       = 6;
    const AGGGD   = 4;
    const ABC     = 18;
    const AGENAME = 666;

    public function age()
    {}
    public function nameUser()
    {}
}
@lucasferreira
Copy link
Contributor

Hi @daidaiworm

This is because this extension are now using and old version of PHPFMT project, I've made some PR to update PHPFMT package AND get oficial support to PHP8 #101

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants