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

Operator - before or after allow newline #81

Open
thedomeffm opened this issue May 31, 2022 · 1 comment
Open

Operator - before or after allow newline #81

thedomeffm opened this issue May 31, 2022 · 1 comment

Comments

@thedomeffm
Copy link

Wie würdet ihr "sowas" formatieren?

    public function helloDevs()
    {
        $einWirklichGroßesArray_TrustMe = [];
        $pickware_plugins_test['test']['bla']['whoa_langer_key'] = number_format(
            $einWirklichGroßesArray_TrustMe['ein_key_wow_wow_wow']['enorm_wow_wolle_fade_kuchen_test_test']['test_wow_oha_rofl'] + $einWirklichGroßesArray_TrustMe['ein_key_wow_wow_wow']['asdasd'],
        );
    }

Weil phpcs will nicht das ich hinter dem + oder nach dem + ein newline habe. Es möchtet explizit ein 1 space !
also so lassen wie oben geht nicht weil zu lang

  • auf nächste Zeile erlaubt phpcs nicht
  • als letztes und dann zeilenumbruch erlaubt phpcs auch nicht
    Wert in eine extra Variable schreiben zu müssen ist halt auch dumm, nur um den linter glücklich zu machen?
    public function helloDevs()
    {
        $einWirklichGroßesArray_TrustMe = [];
        $preVar = $einWirklichGroßesArray_TrustMe['ein_key_wow_wow_wow'];
        $var = $preVar['enorm_wow_wolle_fade_kuchen_test_test']['test_wow_oha_rofl'];
        $pickware_plugins_test['test']['bla']['whoa_langer_key'] = number_format(
            $var + $einWirklichGroßesArray_TrustMe['ein_key_wow_wow_wow']['asdasd'],
        );
    }
@thedomeffm
Copy link
Author

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

1 participant