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
CLI queue:failed-table fails to execute on (10.x). (Did not check from which version its broken)
I did some initial digging and the reason for it to not execute is because there is no joinPathsmethod in Lumen Application class. However, joinPaths method exists in Laravel Application class.
I would love an opportunity to appear in contributors list, therefore I could push pull request that resolves this issue.
By the way, the method is not mentioned in ApplicationContract. Maybe it should be mentioned inside contract if its used from another composer package?
By the way, the method is not mentioned in ApplicationContract. Maybe it should be mentioned inside contract if it's used from another composer package?
I don't think we should take immediate action here.
As Laravel is an open source project, we rely on the community to help us diagnose and fix issues as it is not possible to research and fix every issue reported to us via GitHub.
If possible, please make a pull request fixing the issue you have described, along with corresponding tests. All pull requests are promptly reviewed by the Laravel team.
Lumen Version
10.0.2
PHP Version
8.3.0
Database Driver & Version
No response
Description
CLI
queue:failed-table
fails to execute on (10.x). (Did not check from which version its broken)I did some initial digging and the reason for it to not execute is because there is no
joinPaths
method in Lumen Application class. However,joinPaths
method exists in Laravel Application class.This method is being used from MigrationGeneratorCommand.
I would love an opportunity to appear in contributors list, therefore I could push pull request that resolves this issue.
By the way, the method is not mentioned in ApplicationContract. Maybe it should be mentioned inside contract if its used from another composer package?
So I would just add
joinPaths
methods to Lumen Application class. (I would also update other path functions to utilise this function when merging paths like in Laravel Application class)Steps To Reproduce
composer create-project --prefer-dist laravel/lumen blog
php artisan queue:failed-table
The text was updated successfully, but these errors were encountered: