diff --git a/src/Laravel/Phpstan/stubs/Repository.stub b/src/Laravel/Phpstan/stubs/Repository.stub index be97ede6..8ec44e73 100644 --- a/src/Laravel/Phpstan/stubs/Repository.stub +++ b/src/Laravel/Phpstan/stubs/Repository.stub @@ -26,6 +26,7 @@ namespace Illuminate\Contracts\Config; * flash_bag: array, * presets: array, * plugins: array, + * themes: array, * } * * @phpstan-type PresetType array{ @@ -40,6 +41,12 @@ namespace Illuminate\Contracts\Config; * styles?: string[], * options?: array, * } + * + * @phpstan-type ThemeType array{ + * scripts?: string[], + * styles?: string[], + * options?: array, + * } */ interface Repository { @@ -60,9 +67,10 @@ interface Repository * ($key is 'flasher.filter' ? array : * ($key is 'flasher.presets' ? array : * ($key is 'flasher.plugins' ? array : + * ($key is 'flasher.themes' ? array : * ($key is 'flasher.flash_bag' ? array : * ($key is 'flasher.excluded_paths' ? list : - * mixed)))))))) + * mixed))))))))) */ public function get(string|array $key, mixed $default = null): mixed; }