Skip to main content

Let GrumPHP fix your code!

07 Jun 2020
Tags: grumphp

One of the most requested features is the ability to automatically fix broken code. Since previously we could not do this in a controlled an safe way, we decided that this won't be a GrumPHP feature. In the new GrumPHP version (0.19.0), we rewrote the task runner system. Now it is possible to do these kind of code manipulations. Let's see how it works...

How do I get this madness to work?

No worries: Fixing is enabled by default! Currently we added fixers for `phpcs` and `PHP-CS-Fixer`. This list might be extended in the future and you can of course also provide fixers for your own custom tasks!

How does GrumPHP knows what to fix?

GrumPHP will first run the configured tasks as it always did. When a task fails, we already provided the commandline command to fix the code. This resulted in manual copy/pasting the code, which is a stupid repeatable task. With this new feature, the task can now determine if it can autofix the code by e.g. running the console command it displayed. In a last phase before finishing the task runner, the autofixer process is initialized. It will look for fixable tasks and after asking for your consent, it will run the fix command that is provided from the task. GrumPHP will not add any new files to GIT or won't automatically commit these changes.

You are in full control!

In previous versions, we only displayed the command line tool that you can use to fix your code. We never wanted GrumPHP to change code during a pre-commit or inside a CI cycle. Therefore, we decided to fix the code but don't stage the changes to git. This way, you can always review the changes that were made before recommitting the code.

Don't touch my code!

I can imagine that you don't want GrumPHP to touch your code. Luckily, the fixer is configurable: You can choose to completely disable it or you can choose to change the default consent answer.

# grumphp.yaml

grumphp:
    fixer:
        enabled: true
        fix_by_default: false

Note: The `fix_by_defaut` parameter will also be used in situations where CLI input is not supported. Depending on your CLI, this could be e.g. during pre-commit.

Enjoy and let me know what you think of it!

whois VeeWee

Selfie

Hi there!

Glad you made it to my blog. Please feel free to take a look around. You will find some interesting stuff, mostly about web development and PHP.

Still can't get enough of me? Quick! Take a look at my Speakerdeck, Twitter, PHPC.Social, or Github account.