Replies: 1 comment 7 replies
-
Hello, the configuration you posted is invalid: $messenger->bus('first_bus')
->middleware('some_middleware')
->middleware('some_other_middleware')
;
$messenger->bus('second_bus')
->middleware('some_middleware')
->middleware('some_other_middleware')
; |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I wonder if there is any automatic tool or whatever to keep php config files with the proper indentation and, as a consequence, the readability.
Example:
Before:
After:
From pros and cons of using php configs this one is definitely a disadvantage. In yaml, inappropriate indentation would crash the app. In php files however, the indentation doesn't matter so some devs don't care and an automatic tool fixing this would be nice.
Beta Was this translation helpful? Give feedback.
All reactions