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
Controllers namespace hardcoded as 'CE\Http\Controllers' but by default it has 'App\Http\Controllers'. That's why you have wrong 'tags' when generating JSON resources for swagger and JS errors when click on 'List operations'.
So it's better to write 'App\Http\Controllers' here. And the best way is to determinate controllers namespace, but I do not know how to get it (that's because I did not made a PR). But we could read it from composer.json, autoload->ps-4 and then just add 'Http\Controllers'.
Could you please made a patch? :)
The text was updated successfully, but these errors were encountered:
apidoc/src/Commands/ApiDocGenerator.php
Line 178 in 127bcb2
Controllers namespace hardcoded as 'CE\Http\Controllers' but by default it has 'App\Http\Controllers'. That's why you have wrong 'tags' when generating JSON resources for swagger and JS errors when click on 'List operations'.
So it's better to write 'App\Http\Controllers' here. And the best way is to determinate controllers namespace, but I do not know how to get it (that's because I did not made a PR). But we could read it from composer.json, autoload->ps-4 and then just add 'Http\Controllers'.
Could you please made a patch? :)
The text was updated successfully, but these errors were encountered: