Skip to content

Commit 923f0c2

Browse files
authored
fix(provider): Fix variable type mismatch (#10)
2 parents 0c86f8a + e241265 commit 923f0c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SageSvgServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ protected function customDirectives()
7777
return;
7878
}
7979

80-
if ($directives = collect($this->app->config->get('svg.directives'))->isEmpty()) {
80+
if (($directives = collect($this->app->config->get('svg.directives')))->isEmpty()) {
8181
return;
8282
}
8383

0 commit comments

Comments
 (0)