Commit 81f5bba
[fix] constant definition typo in service provider
The affected line was meant to fallback to the default db connection if the user does not specify one in his .env file
But instead the default connection name was being passed to define() third parameter which is meant to set whether the constant should be case sensitive or not.
PHP 7.3 added a deprecation "Declaration of case-insensitive constants is deprecated" which causes an error
resolves #1331 parent cd6a3db commit 81f5bba
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | | - | |
| 67 | + | |
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
| |||
0 commit comments