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
I encountered an issue where I would get this error when using jigsaw by tightenco.
I fixed my issue by wrapping your function tap() in a if (! function_exists('tap')) statement.
function tap()
if (! function_exists('tap'))
I'm not sure what other functions would benefit from this.
illuminate/support (which jigsaw uses) has done this with every function. See helpers.php
The text was updated successfully, but these errors were encountered:
yeah, this is the change they made in original project, I should update my version accordingly, thanks
Sorry, something went wrong.
No branches or pull requests
I encountered an issue where I would get this error when using jigsaw by tightenco.
I fixed my issue by wrapping your
function tap()
in aif (! function_exists('tap'))
statement.I'm not sure what other functions would benefit from this.
illuminate/support (which jigsaw uses) has done this with every function. See helpers.php
The text was updated successfully, but these errors were encountered: