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
Hey, I get the following error when trying to publish the config.
[ErrorException] array_merge(): Argument #1 is not an array
I get it because of this line:
$config = array_merge(config('blade-svg'), [
This fixes it:
$config = array_merge((array) config('blade-svg'), [
Once I run art vendor:publish --provider="BladeSvg\BladeSvgServiceProvider" the line can be removed, as now it returns an array.
art vendor:publish --provider="BladeSvg\BladeSvgServiceProvider"
The text was updated successfully, but these errors were encountered:
35e7dfa
Thanks, fixed.
Sorry, something went wrong.
No branches or pull requests
Hey, I get the following error when trying to publish the config.
I get it because of this line:
This fixes it:
Once I run
art vendor:publish --provider="BladeSvg\BladeSvgServiceProvider"
the line can be removed, as now it returns an array.The text was updated successfully, but these errors were encountered: