File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -189,10 +189,12 @@ protected function registerClassAutoloadExceptions(): callable
189189 protected function getExpectedArgumentSets ()
190190 {
191191 return [
192- 'configs ' => $ this ->loadTemplate ('configs ' )->pluck ('name ' )->filter (),
193- 'routes ' => $ this ->loadTemplate ('routes ' )->pluck ('name ' )->filter (),
194- 'views ' => $ this ->loadTemplate ('views ' )->pluck ('key ' )->filter (),
195- 'translations ' => $ this ->loadTemplate ('translations ' )->filter ()->keys (),
192+ 'configs ' => $ this ->loadTemplate ('configs ' )->pluck ('name ' )->filter ()->toArray (),
193+ 'routes ' => $ this ->loadTemplate ('routes ' )->pluck ('name ' )->filter ()->toArray (),
194+ 'views ' => $ this ->loadTemplate ('views ' )->pluck ('key ' )->filter ()->map (function ($ value ) {
195+ return (string ) $ value ;
196+ })->toArray (),
197+ 'translations ' => $ this ->loadTemplate ('translations ' )->filter ()->keys ()->toArray (),
196198 ];
197199 }
198200
You can’t perform that action at this time.
0 commit comments