We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In your boot() method, you type-hint two variables - $user and $tree.
boot()
$user
$tree
https://github.com/vytux-com/vytux_cousins/blob/master/module.php#L262
You do not use these variables so you do not need to specify them
In the latest code, you cannot request the tree like this. Instead, you obtain it as an attribute of the request. $request->getAttribute('tree').
$request->getAttribute('tree')
The text was updated successfully, but these errors were encountered:
Thanks, fixed in 0de66a5
Sorry, something went wrong.
Works now as expected. Thanks
No branches or pull requests
In your
boot()
method, you type-hint two variables -$user
and$tree
.https://github.com/vytux-com/vytux_cousins/blob/master/module.php#L262
You do not use these variables so you do not need to specify them
In the latest code, you cannot request the tree like this. Instead, you obtain it as an attribute of the request.
$request->getAttribute('tree')
.The text was updated successfully, but these errors were encountered: