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
{{ message }}
This repository has been archived by the owner on Aug 9, 2022. It is now read-only.
I was just having trouble with another composer package which required me to rename my app to a different namespace.
And then I started having trouble with this package. It seems that because you use this statement in your controller
use App\Http\Controllers\Controller;
That this package will only work for applications that use the default namespace. I have renamed mine and the only way I could get your package to work was to rename that use statement and add my namespace.
This is the first time I am faced with such a conflict... is there something I am missing?
The text was updated successfully, but these errors were encountered:
@vesper8,
You are right, above use statement is static as of now. so if you change root namespace then it will create trouble. I will look into it and will find out a way to fix it in next release.
I was just having trouble with another composer package which required me to rename my app to a different namespace.
And then I started having trouble with this package. It seems that because you use this statement in your controller
That this package will only work for applications that use the default namespace. I have renamed mine and the only way I could get your package to work was to rename that use statement and add my namespace.
This is the first time I am faced with such a conflict... is there something I am missing?
The text was updated successfully, but these errors were encountered: