Replies: 1 comment 7 replies
-
Why do you want to remove them? |
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
-
The merging of the application config with the default config of the framework has caused an issue recently, by removing the ability to use numeric strings for some config values. By default, Laravel will merge in the following config values with the defaults:
auth.guards
auth.providers
auth.passwords
broadcasting.connections
cache.stores
database.connections
filesystems.disks
logging.channels
mail.mailers
queue.connections
However, from what I can tell, the default values within here are identical to the values provided with every Laravel install, which means if someone deletes a default connection from somewhere, it's added back.
My question is this, why? The only reason I can see behind this is that somewhere there are hardcoded references to default connections, though I doubt that's the case.
Does anyone know?
Beta Was this translation helpful? Give feedback.
All reactions