How with laravel/pint 1.4 can I remove space after negative “!” symbol ?
Not :
if (! self::$wasSetup) {
But :
if (!self::$wasSetup) {
I suppose that last is psr-12 rule...
Thanks!
How with laravel/pint 1.4 can I remove space after negative “!” symbol ?
Not :
if (! self::$wasSetup) {
But :
if (!self::$wasSetup) {
I suppose that last is psr-12 rule...
Thanks!
Copyright © 2021 Jogjafile Inc.
As per
PHP-CS-Fixer, Rule not_operator_with_successor_spaceLogical
NOT operators (!)should have one trailing whitespace.So by default, one trailing whitespace is enabled. To disable white space after NOT operators then you should create a
pint.jsonfile in the root folder