You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds proper escaping for php service config format
php configs need `\\\\`, `\\` are not enough.
`"service('App\\Mailer')"` compiles into `AppMailer` , `"service('App\\\\Mailer')"` compiles correctly into `App\Mailer`
0 commit comments