-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.phpstorm.meta.php
3091 lines (3081 loc) · 146 KB
/
.phpstorm.meta.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
declare(strict_types=1);
/* @noinspection ALL */
// @formatter:off
// phpcs:ignoreFile
namespace PHPSTORM_META {
use App\Models\User;
use Barryvdh\Debugbar\Console\ClearCommand;
use Illuminate\Auth\Access\Gate;
use Illuminate\Auth\Passwords\PasswordBrokerManager;
use Illuminate\Cache\MemcachedConnector;
use Illuminate\Config\Repository;
use Illuminate\Container\Container;
use Illuminate\Contracts\Auth\Guard;
use Illuminate\Contracts\Translation\Translator;
use Illuminate\Database\Connectors\ConnectionFactory;
use Illuminate\Database\DatabaseTransactionsManager;
use Illuminate\Database\Eloquent\QueueEntityResolver;
use Illuminate\Foundation\Auth\Access\Authorizable;
use Illuminate\Foundation\Console\Kernel;
use Illuminate\Foundation\Testing\Concerns\InteractsWithContainer;
use Illuminate\Http\Request;
use Illuminate\Log\Context\ContextLogProcessor;
use Illuminate\Mail\MailManager;
use Illuminate\Queue\Listener;
use Illuminate\Routing\CallableDispatcher;
use Illuminate\Routing\ControllerDispatcher;
use Illuminate\Routing\Redirector;
use Illuminate\Routing\Router;
use Illuminate\Routing\UrlGenerator;
use Illuminate\Support\Arr;
use Illuminate\Support\Env;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\Redirect;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\Facades\URL;
use Illuminate\Support\Facades\View;
use Illuminate\View\Engines\EngineResolver;
use Illuminate\View\Factory;
use Inertia\Ssr\HttpGateway;
use Laravel\Tinker\Console\TinkerCommand;
use NunoMaduro\Collision\Adapters\Laravel\ExceptionHandler;
use Psr\Container\ContainerInterface;
use Spatie\ErrorSolutions\SolutionProviderRepository;
use Spatie\Ignition\Config\FileConfigManager;
use Spatie\LaravelIgnition\Renderers\IgnitionExceptionRenderer;
/**
* PhpStorm Meta file, to provide autocomplete information for PhpStorm
*
* @author Barry vd. Heuvel <[email protected]>
* @see https://github.com/barryvdh/laravel-ide-helper
*/
override(new \Illuminate\Contracts\Container\Container(), map([
'' => '@',
'Illuminate\Contracts\Auth\Access\Gate' => Gate::class,
'Illuminate\Contracts\Console\Kernel' => Kernel::class,
'Illuminate\Contracts\Debug\ExceptionHandler' => ExceptionHandler::class,
'Illuminate\Contracts\Foundation\ExceptionRenderer' => IgnitionExceptionRenderer::class,
'Illuminate\Contracts\Http\Kernel' => \Illuminate\Foundation\Http\Kernel::class,
'Illuminate\Contracts\Log\ContextLogProcessor' => ContextLogProcessor::class,
'Illuminate\Contracts\Queue\EntityResolver' => QueueEntityResolver::class,
'Illuminate\Routing\Contracts\CallableDispatcher' => CallableDispatcher::class,
'Illuminate\Routing\Contracts\ControllerDispatcher' => ControllerDispatcher::class,
'Inertia\Ssr\Gateway' => HttpGateway::class,
'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => SolutionProviderRepository::class,
'Spatie\Ignition\Contracts\ConfigManager' => FileConfigManager::class,
'auth.password' => PasswordBrokerManager::class,
'command.debugbar.clear' => ClearCommand::class,
'command.tinker' => TinkerCommand::class,
'db.factory' => ConnectionFactory::class,
'db.transactions' => DatabaseTransactionsManager::class,
'mail.manager' => MailManager::class,
'memcached.connector' => MemcachedConnector::class,
'queue.listener' => Listener::class,
'view.engine.resolver' => EngineResolver::class,
]));
override(Container::makeWith(0), map([
'' => '@',
'Illuminate\Contracts\Auth\Access\Gate' => Gate::class,
'Illuminate\Contracts\Console\Kernel' => Kernel::class,
'Illuminate\Contracts\Debug\ExceptionHandler' => ExceptionHandler::class,
'Illuminate\Contracts\Foundation\ExceptionRenderer' => IgnitionExceptionRenderer::class,
'Illuminate\Contracts\Http\Kernel' => \Illuminate\Foundation\Http\Kernel::class,
'Illuminate\Contracts\Log\ContextLogProcessor' => ContextLogProcessor::class,
'Illuminate\Contracts\Queue\EntityResolver' => QueueEntityResolver::class,
'Illuminate\Routing\Contracts\CallableDispatcher' => CallableDispatcher::class,
'Illuminate\Routing\Contracts\ControllerDispatcher' => ControllerDispatcher::class,
'Inertia\Ssr\Gateway' => HttpGateway::class,
'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => SolutionProviderRepository::class,
'Spatie\Ignition\Contracts\ConfigManager' => FileConfigManager::class,
'auth.password' => PasswordBrokerManager::class,
'command.debugbar.clear' => ClearCommand::class,
'command.tinker' => TinkerCommand::class,
'db.factory' => ConnectionFactory::class,
'db.transactions' => DatabaseTransactionsManager::class,
'mail.manager' => MailManager::class,
'memcached.connector' => MemcachedConnector::class,
'queue.listener' => Listener::class,
'view.engine.resolver' => EngineResolver::class,
]));
override(\Illuminate\Contracts\Container\Container::get(0), map([
'' => '@',
'Illuminate\Contracts\Auth\Access\Gate' => Gate::class,
'Illuminate\Contracts\Console\Kernel' => Kernel::class,
'Illuminate\Contracts\Debug\ExceptionHandler' => ExceptionHandler::class,
'Illuminate\Contracts\Foundation\ExceptionRenderer' => IgnitionExceptionRenderer::class,
'Illuminate\Contracts\Http\Kernel' => \Illuminate\Foundation\Http\Kernel::class,
'Illuminate\Contracts\Log\ContextLogProcessor' => ContextLogProcessor::class,
'Illuminate\Contracts\Queue\EntityResolver' => QueueEntityResolver::class,
'Illuminate\Routing\Contracts\CallableDispatcher' => CallableDispatcher::class,
'Illuminate\Routing\Contracts\ControllerDispatcher' => ControllerDispatcher::class,
'Inertia\Ssr\Gateway' => HttpGateway::class,
'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => SolutionProviderRepository::class,
'Spatie\Ignition\Contracts\ConfigManager' => FileConfigManager::class,
'auth.password' => PasswordBrokerManager::class,
'command.debugbar.clear' => ClearCommand::class,
'command.tinker' => TinkerCommand::class,
'db.factory' => ConnectionFactory::class,
'db.transactions' => DatabaseTransactionsManager::class,
'mail.manager' => MailManager::class,
'memcached.connector' => MemcachedConnector::class,
'queue.listener' => Listener::class,
'view.engine.resolver' => EngineResolver::class,
]));
override(\Illuminate\Contracts\Container\Container::make(0), map([
'' => '@',
'Illuminate\Contracts\Auth\Access\Gate' => Gate::class,
'Illuminate\Contracts\Console\Kernel' => Kernel::class,
'Illuminate\Contracts\Debug\ExceptionHandler' => ExceptionHandler::class,
'Illuminate\Contracts\Foundation\ExceptionRenderer' => IgnitionExceptionRenderer::class,
'Illuminate\Contracts\Http\Kernel' => \Illuminate\Foundation\Http\Kernel::class,
'Illuminate\Contracts\Log\ContextLogProcessor' => ContextLogProcessor::class,
'Illuminate\Contracts\Queue\EntityResolver' => QueueEntityResolver::class,
'Illuminate\Routing\Contracts\CallableDispatcher' => CallableDispatcher::class,
'Illuminate\Routing\Contracts\ControllerDispatcher' => ControllerDispatcher::class,
'Inertia\Ssr\Gateway' => HttpGateway::class,
'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => SolutionProviderRepository::class,
'Spatie\Ignition\Contracts\ConfigManager' => FileConfigManager::class,
'auth.password' => PasswordBrokerManager::class,
'command.debugbar.clear' => ClearCommand::class,
'command.tinker' => TinkerCommand::class,
'db.factory' => ConnectionFactory::class,
'db.transactions' => DatabaseTransactionsManager::class,
'mail.manager' => MailManager::class,
'memcached.connector' => MemcachedConnector::class,
'queue.listener' => Listener::class,
'view.engine.resolver' => EngineResolver::class,
]));
override(\Illuminate\Contracts\Container\Container::makeWith(0), map([
'' => '@',
'Illuminate\Contracts\Auth\Access\Gate' => Gate::class,
'Illuminate\Contracts\Console\Kernel' => Kernel::class,
'Illuminate\Contracts\Debug\ExceptionHandler' => ExceptionHandler::class,
'Illuminate\Contracts\Foundation\ExceptionRenderer' => IgnitionExceptionRenderer::class,
'Illuminate\Contracts\Http\Kernel' => \Illuminate\Foundation\Http\Kernel::class,
'Illuminate\Contracts\Log\ContextLogProcessor' => ContextLogProcessor::class,
'Illuminate\Contracts\Queue\EntityResolver' => QueueEntityResolver::class,
'Illuminate\Routing\Contracts\CallableDispatcher' => CallableDispatcher::class,
'Illuminate\Routing\Contracts\ControllerDispatcher' => ControllerDispatcher::class,
'Inertia\Ssr\Gateway' => HttpGateway::class,
'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => SolutionProviderRepository::class,
'Spatie\Ignition\Contracts\ConfigManager' => FileConfigManager::class,
'auth.password' => PasswordBrokerManager::class,
'command.debugbar.clear' => ClearCommand::class,
'command.tinker' => TinkerCommand::class,
'db.factory' => ConnectionFactory::class,
'db.transactions' => DatabaseTransactionsManager::class,
'mail.manager' => MailManager::class,
'memcached.connector' => MemcachedConnector::class,
'queue.listener' => Listener::class,
'view.engine.resolver' => EngineResolver::class,
]));
override(\App::get(0), map([
'' => '@',
'Illuminate\Contracts\Auth\Access\Gate' => Gate::class,
'Illuminate\Contracts\Console\Kernel' => Kernel::class,
'Illuminate\Contracts\Debug\ExceptionHandler' => ExceptionHandler::class,
'Illuminate\Contracts\Foundation\ExceptionRenderer' => IgnitionExceptionRenderer::class,
'Illuminate\Contracts\Http\Kernel' => \Illuminate\Foundation\Http\Kernel::class,
'Illuminate\Contracts\Log\ContextLogProcessor' => ContextLogProcessor::class,
'Illuminate\Contracts\Queue\EntityResolver' => QueueEntityResolver::class,
'Illuminate\Routing\Contracts\CallableDispatcher' => CallableDispatcher::class,
'Illuminate\Routing\Contracts\ControllerDispatcher' => ControllerDispatcher::class,
'Inertia\Ssr\Gateway' => HttpGateway::class,
'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => SolutionProviderRepository::class,
'Spatie\Ignition\Contracts\ConfigManager' => FileConfigManager::class,
'auth.password' => PasswordBrokerManager::class,
'command.debugbar.clear' => ClearCommand::class,
'command.tinker' => TinkerCommand::class,
'db.factory' => ConnectionFactory::class,
'db.transactions' => DatabaseTransactionsManager::class,
'mail.manager' => MailManager::class,
'memcached.connector' => MemcachedConnector::class,
'queue.listener' => Listener::class,
'view.engine.resolver' => EngineResolver::class,
]));
override(\App::make(0), map([
'' => '@',
'Illuminate\Contracts\Auth\Access\Gate' => Gate::class,
'Illuminate\Contracts\Console\Kernel' => Kernel::class,
'Illuminate\Contracts\Debug\ExceptionHandler' => ExceptionHandler::class,
'Illuminate\Contracts\Foundation\ExceptionRenderer' => IgnitionExceptionRenderer::class,
'Illuminate\Contracts\Http\Kernel' => \Illuminate\Foundation\Http\Kernel::class,
'Illuminate\Contracts\Log\ContextLogProcessor' => ContextLogProcessor::class,
'Illuminate\Contracts\Queue\EntityResolver' => QueueEntityResolver::class,
'Illuminate\Routing\Contracts\CallableDispatcher' => CallableDispatcher::class,
'Illuminate\Routing\Contracts\ControllerDispatcher' => ControllerDispatcher::class,
'Inertia\Ssr\Gateway' => HttpGateway::class,
'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => SolutionProviderRepository::class,
'Spatie\Ignition\Contracts\ConfigManager' => FileConfigManager::class,
'auth.password' => PasswordBrokerManager::class,
'command.debugbar.clear' => ClearCommand::class,
'command.tinker' => TinkerCommand::class,
'db.factory' => ConnectionFactory::class,
'db.transactions' => DatabaseTransactionsManager::class,
'mail.manager' => MailManager::class,
'memcached.connector' => MemcachedConnector::class,
'queue.listener' => Listener::class,
'view.engine.resolver' => EngineResolver::class,
]));
override(\App::makeWith(0), map([
'' => '@',
'Illuminate\Contracts\Auth\Access\Gate' => Gate::class,
'Illuminate\Contracts\Console\Kernel' => Kernel::class,
'Illuminate\Contracts\Debug\ExceptionHandler' => ExceptionHandler::class,
'Illuminate\Contracts\Foundation\ExceptionRenderer' => IgnitionExceptionRenderer::class,
'Illuminate\Contracts\Http\Kernel' => \Illuminate\Foundation\Http\Kernel::class,
'Illuminate\Contracts\Log\ContextLogProcessor' => ContextLogProcessor::class,
'Illuminate\Contracts\Queue\EntityResolver' => QueueEntityResolver::class,
'Illuminate\Routing\Contracts\CallableDispatcher' => CallableDispatcher::class,
'Illuminate\Routing\Contracts\ControllerDispatcher' => ControllerDispatcher::class,
'Inertia\Ssr\Gateway' => HttpGateway::class,
'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => SolutionProviderRepository::class,
'Spatie\Ignition\Contracts\ConfigManager' => FileConfigManager::class,
'auth.password' => PasswordBrokerManager::class,
'command.debugbar.clear' => ClearCommand::class,
'command.tinker' => TinkerCommand::class,
'db.factory' => ConnectionFactory::class,
'db.transactions' => DatabaseTransactionsManager::class,
'mail.manager' => MailManager::class,
'memcached.connector' => MemcachedConnector::class,
'queue.listener' => Listener::class,
'view.engine.resolver' => EngineResolver::class,
]));
override(\app(0), map([
'' => '@',
'Illuminate\Contracts\Auth\Access\Gate' => Gate::class,
'Illuminate\Contracts\Console\Kernel' => Kernel::class,
'Illuminate\Contracts\Debug\ExceptionHandler' => ExceptionHandler::class,
'Illuminate\Contracts\Foundation\ExceptionRenderer' => IgnitionExceptionRenderer::class,
'Illuminate\Contracts\Http\Kernel' => \Illuminate\Foundation\Http\Kernel::class,
'Illuminate\Contracts\Log\ContextLogProcessor' => ContextLogProcessor::class,
'Illuminate\Contracts\Queue\EntityResolver' => QueueEntityResolver::class,
'Illuminate\Routing\Contracts\CallableDispatcher' => CallableDispatcher::class,
'Illuminate\Routing\Contracts\ControllerDispatcher' => ControllerDispatcher::class,
'Inertia\Ssr\Gateway' => HttpGateway::class,
'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => SolutionProviderRepository::class,
'Spatie\Ignition\Contracts\ConfigManager' => FileConfigManager::class,
'auth.password' => PasswordBrokerManager::class,
'command.debugbar.clear' => ClearCommand::class,
'command.tinker' => TinkerCommand::class,
'db.factory' => ConnectionFactory::class,
'db.transactions' => DatabaseTransactionsManager::class,
'mail.manager' => MailManager::class,
'memcached.connector' => MemcachedConnector::class,
'queue.listener' => Listener::class,
'view.engine.resolver' => EngineResolver::class,
]));
override(\resolve(0), map([
'' => '@',
'Illuminate\Contracts\Auth\Access\Gate' => Gate::class,
'Illuminate\Contracts\Console\Kernel' => Kernel::class,
'Illuminate\Contracts\Debug\ExceptionHandler' => ExceptionHandler::class,
'Illuminate\Contracts\Foundation\ExceptionRenderer' => IgnitionExceptionRenderer::class,
'Illuminate\Contracts\Http\Kernel' => \Illuminate\Foundation\Http\Kernel::class,
'Illuminate\Contracts\Log\ContextLogProcessor' => ContextLogProcessor::class,
'Illuminate\Contracts\Queue\EntityResolver' => QueueEntityResolver::class,
'Illuminate\Routing\Contracts\CallableDispatcher' => CallableDispatcher::class,
'Illuminate\Routing\Contracts\ControllerDispatcher' => ControllerDispatcher::class,
'Inertia\Ssr\Gateway' => HttpGateway::class,
'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => SolutionProviderRepository::class,
'Spatie\Ignition\Contracts\ConfigManager' => FileConfigManager::class,
'auth.password' => PasswordBrokerManager::class,
'command.debugbar.clear' => ClearCommand::class,
'command.tinker' => TinkerCommand::class,
'db.factory' => ConnectionFactory::class,
'db.transactions' => DatabaseTransactionsManager::class,
'mail.manager' => MailManager::class,
'memcached.connector' => MemcachedConnector::class,
'queue.listener' => Listener::class,
'view.engine.resolver' => EngineResolver::class,
]));
override(ContainerInterface::get(0), map([
'' => '@',
'Illuminate\Contracts\Auth\Access\Gate' => Gate::class,
'Illuminate\Contracts\Console\Kernel' => Kernel::class,
'Illuminate\Contracts\Debug\ExceptionHandler' => ExceptionHandler::class,
'Illuminate\Contracts\Foundation\ExceptionRenderer' => IgnitionExceptionRenderer::class,
'Illuminate\Contracts\Http\Kernel' => \Illuminate\Foundation\Http\Kernel::class,
'Illuminate\Contracts\Log\ContextLogProcessor' => ContextLogProcessor::class,
'Illuminate\Contracts\Queue\EntityResolver' => QueueEntityResolver::class,
'Illuminate\Routing\Contracts\CallableDispatcher' => CallableDispatcher::class,
'Illuminate\Routing\Contracts\ControllerDispatcher' => ControllerDispatcher::class,
'Inertia\Ssr\Gateway' => HttpGateway::class,
'Spatie\ErrorSolutions\Contracts\SolutionProviderRepository' => SolutionProviderRepository::class,
'Spatie\Ignition\Contracts\ConfigManager' => FileConfigManager::class,
'auth.password' => PasswordBrokerManager::class,
'command.debugbar.clear' => ClearCommand::class,
'command.tinker' => TinkerCommand::class,
'db.factory' => ConnectionFactory::class,
'db.transactions' => DatabaseTransactionsManager::class,
'mail.manager' => MailManager::class,
'memcached.connector' => MemcachedConnector::class,
'queue.listener' => Listener::class,
'view.engine.resolver' => EngineResolver::class,
]));
override(\auth()->user(), map([
'' => User::class,
]));
override(Guard::user(), map([
'' => User::class,
]));
override(Auth::user(), map([
'' => User::class,
]));
override(\request()->user(), map([
'' => User::class,
]));
override(Request::user(), map([
'' => User::class,
]));
override(\Illuminate\Support\Facades\Request::user(), map([
'' => User::class,
]));
override(\config(), map([
'app.name' => 'string',
'app.env' => 'string',
'app.debug' => 'boolean',
'app.url' => 'string',
'app.frontend_url' => 'string',
'app.asset_url' => 'NULL',
'app.timezone' => 'string',
'app.locale' => 'string',
'app.fallback_locale' => 'string',
'app.faker_locale' => 'string',
'app.cipher' => 'string',
'app.key' => 'string',
'app.previous_keys' => 'array',
'app.maintenance.driver' => 'string',
'app.maintenance.store' => 'string',
'app.providers' => 'array',
'app.aliases.App' => 'string',
'app.aliases.Arr' => 'string',
'app.aliases.Artisan' => 'string',
'app.aliases.Auth' => 'string',
'app.aliases.Blade' => 'string',
'app.aliases.Broadcast' => 'string',
'app.aliases.Bus' => 'string',
'app.aliases.Cache' => 'string',
'app.aliases.Concurrency' => 'string',
'app.aliases.Config' => 'string',
'app.aliases.Context' => 'string',
'app.aliases.Cookie' => 'string',
'app.aliases.Crypt' => 'string',
'app.aliases.Date' => 'string',
'app.aliases.DB' => 'string',
'app.aliases.Eloquent' => 'string',
'app.aliases.Event' => 'string',
'app.aliases.File' => 'string',
'app.aliases.Gate' => 'string',
'app.aliases.Hash' => 'string',
'app.aliases.Http' => 'string',
'app.aliases.Js' => 'string',
'app.aliases.Lang' => 'string',
'app.aliases.Log' => 'string',
'app.aliases.Mail' => 'string',
'app.aliases.Notification' => 'string',
'app.aliases.Number' => 'string',
'app.aliases.Password' => 'string',
'app.aliases.Process' => 'string',
'app.aliases.Queue' => 'string',
'app.aliases.RateLimiter' => 'string',
'app.aliases.Redirect' => 'string',
'app.aliases.Request' => 'string',
'app.aliases.Response' => 'string',
'app.aliases.Route' => 'string',
'app.aliases.Schedule' => 'string',
'app.aliases.Schema' => 'string',
'app.aliases.Session' => 'string',
'app.aliases.Storage' => 'string',
'app.aliases.Str' => 'string',
'app.aliases.URL' => 'string',
'app.aliases.Uri' => 'string',
'app.aliases.Validator' => 'string',
'app.aliases.View' => 'string',
'app.aliases.Vite' => 'string',
'auth.defaults.guard' => 'string',
'auth.defaults.passwords' => 'string',
'auth.guards.web.driver' => 'string',
'auth.guards.web.provider' => 'string',
'auth.guards.sanctum.driver' => 'string',
'auth.guards.sanctum.provider' => 'NULL',
'auth.providers.users.driver' => 'string',
'auth.providers.users.model' => 'string',
'auth.passwords.users.provider' => 'string',
'auth.passwords.users.table' => 'string',
'auth.passwords.users.expire' => 'integer',
'auth.passwords.users.throttle' => 'integer',
'auth.password_timeout' => 'integer',
'cache.default' => 'string',
'cache.stores.array.driver' => 'string',
'cache.stores.array.serialize' => 'boolean',
'cache.stores.database.driver' => 'string',
'cache.stores.database.connection' => 'NULL',
'cache.stores.database.table' => 'string',
'cache.stores.database.lock_connection' => 'NULL',
'cache.stores.database.lock_table' => 'NULL',
'cache.stores.file.driver' => 'string',
'cache.stores.file.path' => 'string',
'cache.stores.file.lock_path' => 'string',
'cache.stores.memcached.driver' => 'string',
'cache.stores.memcached.persistent_id' => 'NULL',
'cache.stores.memcached.sasl' => 'array',
'cache.stores.memcached.options' => 'array',
'cache.stores.memcached.servers.0.host' => 'string',
'cache.stores.memcached.servers.0.port' => 'integer',
'cache.stores.memcached.servers.0.weight' => 'integer',
'cache.stores.redis.driver' => 'string',
'cache.stores.redis.connection' => 'string',
'cache.stores.redis.lock_connection' => 'string',
'cache.stores.dynamodb.driver' => 'string',
'cache.stores.dynamodb.key' => 'NULL',
'cache.stores.dynamodb.secret' => 'NULL',
'cache.stores.dynamodb.region' => 'string',
'cache.stores.dynamodb.table' => 'string',
'cache.stores.dynamodb.endpoint' => 'NULL',
'cache.stores.octane.driver' => 'string',
'cache.prefix' => 'string',
'cors.paths' => 'array',
'cors.allowed_methods' => 'array',
'cors.allowed_origins' => 'array',
'cors.allowed_origins_patterns' => 'array',
'cors.allowed_headers' => 'array',
'cors.exposed_headers' => 'array',
'cors.max_age' => 'integer',
'cors.supports_credentials' => 'boolean',
'database.default' => 'string',
'database.connections.sqlite.driver' => 'string',
'database.connections.sqlite.url' => 'NULL',
'database.connections.sqlite.database' => 'string',
'database.connections.sqlite.prefix' => 'string',
'database.connections.sqlite.foreign_key_constraints' => 'boolean',
'database.connections.sqlite.busy_timeout' => 'NULL',
'database.connections.sqlite.journal_mode' => 'NULL',
'database.connections.sqlite.synchronous' => 'NULL',
'database.connections.mysql.driver' => 'string',
'database.connections.mysql.url' => 'NULL',
'database.connections.mysql.host' => 'string',
'database.connections.mysql.port' => 'string',
'database.connections.mysql.database' => 'string',
'database.connections.mysql.username' => 'string',
'database.connections.mysql.password' => 'string',
'database.connections.mysql.unix_socket' => 'string',
'database.connections.mysql.charset' => 'string',
'database.connections.mysql.collation' => 'string',
'database.connections.mysql.prefix' => 'string',
'database.connections.mysql.prefix_indexes' => 'boolean',
'database.connections.mysql.strict' => 'boolean',
'database.connections.mysql.engine' => 'NULL',
'database.connections.mysql.options' => 'array',
'database.connections.mariadb.driver' => 'string',
'database.connections.mariadb.url' => 'NULL',
'database.connections.mariadb.host' => 'string',
'database.connections.mariadb.port' => 'string',
'database.connections.mariadb.database' => 'string',
'database.connections.mariadb.username' => 'string',
'database.connections.mariadb.password' => 'string',
'database.connections.mariadb.unix_socket' => 'string',
'database.connections.mariadb.charset' => 'string',
'database.connections.mariadb.collation' => 'string',
'database.connections.mariadb.prefix' => 'string',
'database.connections.mariadb.prefix_indexes' => 'boolean',
'database.connections.mariadb.strict' => 'boolean',
'database.connections.mariadb.engine' => 'NULL',
'database.connections.mariadb.options' => 'array',
'database.connections.pgsql.driver' => 'string',
'database.connections.pgsql.url' => 'NULL',
'database.connections.pgsql.host' => 'string',
'database.connections.pgsql.port' => 'string',
'database.connections.pgsql.database' => 'string',
'database.connections.pgsql.username' => 'string',
'database.connections.pgsql.password' => 'string',
'database.connections.pgsql.charset' => 'string',
'database.connections.pgsql.prefix' => 'string',
'database.connections.pgsql.prefix_indexes' => 'boolean',
'database.connections.pgsql.search_path' => 'string',
'database.connections.pgsql.sslmode' => 'string',
'database.connections.sqlsrv.driver' => 'string',
'database.connections.sqlsrv.url' => 'NULL',
'database.connections.sqlsrv.host' => 'string',
'database.connections.sqlsrv.port' => 'string',
'database.connections.sqlsrv.database' => 'string',
'database.connections.sqlsrv.username' => 'string',
'database.connections.sqlsrv.password' => 'string',
'database.connections.sqlsrv.charset' => 'string',
'database.connections.sqlsrv.prefix' => 'string',
'database.connections.sqlsrv.prefix_indexes' => 'boolean',
'database.migrations.table' => 'string',
'database.migrations.update_date_on_publish' => 'boolean',
'database.redis.client' => 'string',
'database.redis.options.cluster' => 'string',
'database.redis.options.prefix' => 'string',
'database.redis.default.url' => 'NULL',
'database.redis.default.host' => 'string',
'database.redis.default.username' => 'NULL',
'database.redis.default.password' => 'NULL',
'database.redis.default.port' => 'string',
'database.redis.default.database' => 'string',
'database.redis.cache.url' => 'NULL',
'database.redis.cache.host' => 'string',
'database.redis.cache.username' => 'NULL',
'database.redis.cache.password' => 'NULL',
'database.redis.cache.port' => 'string',
'database.redis.cache.database' => 'string',
'database.redis.session.url' => 'NULL',
'database.redis.session.host' => 'string',
'database.redis.session.username' => 'NULL',
'database.redis.session.password' => 'NULL',
'database.redis.session.port' => 'string',
'database.redis.session.database' => 'string',
'debugbar.enabled' => 'NULL',
'debugbar.hide_empty_tabs' => 'boolean',
'debugbar.except' => 'array',
'debugbar.storage.enabled' => 'boolean',
'debugbar.storage.open' => 'NULL',
'debugbar.storage.driver' => 'string',
'debugbar.storage.path' => 'string',
'debugbar.storage.connection' => 'NULL',
'debugbar.storage.provider' => 'string',
'debugbar.storage.hostname' => 'string',
'debugbar.storage.port' => 'integer',
'debugbar.editor' => 'string',
'debugbar.remote_sites_path' => 'NULL',
'debugbar.local_sites_path' => 'string',
'debugbar.include_vendors' => 'boolean',
'debugbar.capture_ajax' => 'boolean',
'debugbar.add_ajax_timing' => 'boolean',
'debugbar.ajax_handler_auto_show' => 'boolean',
'debugbar.ajax_handler_enable_tab' => 'boolean',
'debugbar.defer_datasets' => 'boolean',
'debugbar.error_handler' => 'boolean',
'debugbar.clockwork' => 'boolean',
'debugbar.collectors.phpinfo' => 'boolean',
'debugbar.collectors.messages' => 'boolean',
'debugbar.collectors.time' => 'boolean',
'debugbar.collectors.memory' => 'boolean',
'debugbar.collectors.exceptions' => 'boolean',
'debugbar.collectors.log' => 'boolean',
'debugbar.collectors.db' => 'boolean',
'debugbar.collectors.views' => 'boolean',
'debugbar.collectors.route' => 'boolean',
'debugbar.collectors.auth' => 'boolean',
'debugbar.collectors.gate' => 'boolean',
'debugbar.collectors.session' => 'boolean',
'debugbar.collectors.symfony_request' => 'boolean',
'debugbar.collectors.mail' => 'boolean',
'debugbar.collectors.laravel' => 'boolean',
'debugbar.collectors.events' => 'boolean',
'debugbar.collectors.default_request' => 'boolean',
'debugbar.collectors.logs' => 'boolean',
'debugbar.collectors.files' => 'boolean',
'debugbar.collectors.config' => 'boolean',
'debugbar.collectors.cache' => 'boolean',
'debugbar.collectors.models' => 'boolean',
'debugbar.collectors.livewire' => 'boolean',
'debugbar.collectors.jobs' => 'boolean',
'debugbar.collectors.pennant' => 'boolean',
'debugbar.options.time.memory_usage' => 'boolean',
'debugbar.options.messages.trace' => 'boolean',
'debugbar.options.memory.reset_peak' => 'boolean',
'debugbar.options.memory.with_baseline' => 'boolean',
'debugbar.options.memory.precision' => 'integer',
'debugbar.options.auth.show_name' => 'boolean',
'debugbar.options.auth.show_guards' => 'boolean',
'debugbar.options.db.with_params' => 'boolean',
'debugbar.options.db.exclude_paths' => 'array',
'debugbar.options.db.backtrace' => 'boolean',
'debugbar.options.db.backtrace_exclude_paths' => 'array',
'debugbar.options.db.timeline' => 'boolean',
'debugbar.options.db.duration_background' => 'boolean',
'debugbar.options.db.explain.enabled' => 'boolean',
'debugbar.options.db.hints' => 'boolean',
'debugbar.options.db.show_copy' => 'boolean',
'debugbar.options.db.slow_threshold' => 'boolean',
'debugbar.options.db.memory_usage' => 'boolean',
'debugbar.options.db.soft_limit' => 'integer',
'debugbar.options.db.hard_limit' => 'integer',
'debugbar.options.mail.timeline' => 'boolean',
'debugbar.options.mail.show_body' => 'boolean',
'debugbar.options.views.timeline' => 'boolean',
'debugbar.options.views.data' => 'boolean',
'debugbar.options.views.group' => 'integer',
'debugbar.options.views.exclude_paths' => 'array',
'debugbar.options.route.label' => 'boolean',
'debugbar.options.session.hiddens' => 'array',
'debugbar.options.symfony_request.label' => 'boolean',
'debugbar.options.symfony_request.hiddens' => 'array',
'debugbar.options.events.data' => 'boolean',
'debugbar.options.logs.file' => 'NULL',
'debugbar.options.cache.values' => 'boolean',
'debugbar.inject' => 'boolean',
'debugbar.route_prefix' => 'string',
'debugbar.route_middleware' => 'array',
'debugbar.route_domain' => 'NULL',
'debugbar.theme' => 'string',
'debugbar.debug_backtrace_limit' => 'integer',
'envy.environment_files' => 'array',
'envy.config_files' => 'array',
'envy.display_comments' => 'boolean',
'envy.display_location_hints' => 'boolean',
'envy.display_default_values' => 'boolean',
'envy.exclude_calls_with_defaults' => 'boolean',
'envy.exclusions' => 'array',
'envy.inclusions' => 'array',
'filesystems.default' => 'string',
'filesystems.disks.local.driver' => 'string',
'filesystems.disks.local.root' => 'string',
'filesystems.disks.local.serve' => 'boolean',
'filesystems.disks.local.throw' => 'boolean',
'filesystems.disks.public.driver' => 'string',
'filesystems.disks.public.root' => 'string',
'filesystems.disks.public.url' => 'string',
'filesystems.disks.public.visibility' => 'string',
'filesystems.disks.public.throw' => 'boolean',
'filesystems.disks.s3.driver' => 'string',
'filesystems.disks.s3.key' => 'NULL',
'filesystems.disks.s3.secret' => 'NULL',
'filesystems.disks.s3.region' => 'NULL',
'filesystems.disks.s3.bucket' => 'NULL',
'filesystems.disks.s3.url' => 'NULL',
'filesystems.disks.s3.endpoint' => 'NULL',
'filesystems.disks.s3.use_path_style_endpoint' => 'boolean',
'filesystems.disks.s3.throw' => 'boolean',
'filesystems.links./var/www/html/public/storage' => 'string',
'logging.default' => 'string',
'logging.deprecations.channel' => 'NULL',
'logging.deprecations.trace' => 'boolean',
'logging.channels.stack.driver' => 'string',
'logging.channels.stack.channels' => 'array',
'logging.channels.stack.ignore_exceptions' => 'boolean',
'logging.channels.single.driver' => 'string',
'logging.channels.single.path' => 'string',
'logging.channels.single.level' => 'string',
'logging.channels.single.replace_placeholders' => 'boolean',
'logging.channels.daily.driver' => 'string',
'logging.channels.daily.path' => 'string',
'logging.channels.daily.level' => 'string',
'logging.channels.daily.days' => 'integer',
'logging.channels.daily.replace_placeholders' => 'boolean',
'logging.channels.slack.driver' => 'string',
'logging.channels.slack.url' => 'NULL',
'logging.channels.slack.username' => 'string',
'logging.channels.slack.emoji' => 'string',
'logging.channels.slack.level' => 'string',
'logging.channels.slack.replace_placeholders' => 'boolean',
'logging.channels.papertrail.driver' => 'string',
'logging.channels.papertrail.level' => 'string',
'logging.channels.papertrail.handler' => 'string',
'logging.channels.papertrail.handler_with.host' => 'NULL',
'logging.channels.papertrail.handler_with.port' => 'NULL',
'logging.channels.papertrail.handler_with.connectionString' => 'string',
'logging.channels.papertrail.processors' => 'array',
'logging.channels.stderr.driver' => 'string',
'logging.channels.stderr.level' => 'string',
'logging.channels.stderr.handler' => 'string',
'logging.channels.stderr.formatter' => 'NULL',
'logging.channels.stderr.with.stream' => 'string',
'logging.channels.stderr.processors' => 'array',
'logging.channels.syslog.driver' => 'string',
'logging.channels.syslog.level' => 'string',
'logging.channels.syslog.facility' => 'integer',
'logging.channels.syslog.replace_placeholders' => 'boolean',
'logging.channels.errorlog.driver' => 'string',
'logging.channels.errorlog.level' => 'string',
'logging.channels.errorlog.replace_placeholders' => 'boolean',
'logging.channels.null.driver' => 'string',
'logging.channels.null.handler' => 'string',
'logging.channels.emergency.path' => 'string',
'mail.default' => 'string',
'mail.mailers.smtp.transport' => 'string',
'mail.mailers.smtp.scheme' => 'NULL',
'mail.mailers.smtp.url' => 'NULL',
'mail.mailers.smtp.host' => 'string',
'mail.mailers.smtp.port' => 'string',
'mail.mailers.smtp.username' => 'NULL',
'mail.mailers.smtp.password' => 'NULL',
'mail.mailers.smtp.timeout' => 'NULL',
'mail.mailers.smtp.local_domain' => 'string',
'mail.mailers.ses.transport' => 'string',
'mail.mailers.postmark.transport' => 'string',
'mail.mailers.resend.transport' => 'string',
'mail.mailers.sendmail.transport' => 'string',
'mail.mailers.sendmail.path' => 'string',
'mail.mailers.log.transport' => 'string',
'mail.mailers.log.channel' => 'NULL',
'mail.mailers.array.transport' => 'string',
'mail.mailers.failover.transport' => 'string',
'mail.mailers.failover.mailers' => 'array',
'mail.mailers.roundrobin.transport' => 'string',
'mail.mailers.roundrobin.mailers' => 'array',
'mail.from.address' => 'string',
'mail.from.name' => 'string',
'mail.markdown.theme' => 'string',
'mail.markdown.paths' => 'array',
'queue.default' => 'string',
'queue.connections.sync.driver' => 'string',
'queue.connections.database.driver' => 'string',
'queue.connections.database.connection' => 'NULL',
'queue.connections.database.table' => 'string',
'queue.connections.database.queue' => 'string',
'queue.connections.database.retry_after' => 'integer',
'queue.connections.database.after_commit' => 'boolean',
'queue.connections.beanstalkd.driver' => 'string',
'queue.connections.beanstalkd.host' => 'string',
'queue.connections.beanstalkd.queue' => 'string',
'queue.connections.beanstalkd.retry_after' => 'integer',
'queue.connections.beanstalkd.block_for' => 'integer',
'queue.connections.beanstalkd.after_commit' => 'boolean',
'queue.connections.sqs.driver' => 'string',
'queue.connections.sqs.key' => 'NULL',
'queue.connections.sqs.secret' => 'NULL',
'queue.connections.sqs.prefix' => 'string',
'queue.connections.sqs.queue' => 'string',
'queue.connections.sqs.suffix' => 'NULL',
'queue.connections.sqs.region' => 'string',
'queue.connections.sqs.after_commit' => 'boolean',
'queue.connections.redis.driver' => 'string',
'queue.connections.redis.connection' => 'string',
'queue.connections.redis.queue' => 'string',
'queue.connections.redis.retry_after' => 'integer',
'queue.connections.redis.block_for' => 'NULL',
'queue.connections.redis.after_commit' => 'boolean',
'queue.batching.database' => 'string',
'queue.batching.table' => 'string',
'queue.failed.driver' => 'string',
'queue.failed.database' => 'string',
'queue.failed.table' => 'string',
'sanctum.stateful' => 'array',
'sanctum.guard' => 'array',
'sanctum.expiration' => 'NULL',
'sanctum.token_prefix' => 'string',
'sanctum.middleware.authenticate_session' => 'string',
'sanctum.middleware.encrypt_cookies' => 'string',
'sanctum.middleware.validate_csrf_token' => 'string',
'services.postmark.token' => 'NULL',
'services.ses.key' => 'NULL',
'services.ses.secret' => 'NULL',
'services.ses.region' => 'string',
'services.resend.key' => 'NULL',
'services.slack.notifications.bot_user_oauth_token' => 'NULL',
'services.slack.notifications.channel' => 'NULL',
'session.driver' => 'string',
'session.lifetime' => 'string',
'session.expire_on_close' => 'boolean',
'session.encrypt' => 'boolean',
'session.files' => 'string',
'session.connection' => 'string',
'session.table' => 'string',
'session.store' => 'NULL',
'session.lottery' => 'array',
'session.cookie' => 'string',
'session.path' => 'string',
'session.domain' => 'NULL',
'session.secure' => 'NULL',
'session.http_only' => 'boolean',
'session.same_site' => 'string',
'session.partitioned' => 'boolean',
'solo.theme' => 'string',
'solo.themes.light' => 'string',
'solo.themes.dark' => 'string',
'solo.keybinding' => 'string',
'solo.keybindings.default' => 'string',
'solo.keybindings.vim' => 'string',
'solo.commands.Sail' => 'string',
'solo.commands.Logs' => 'object',
'solo.commands.Pest' => 'object',
'solo.commands.Vite' => 'string',
'solo.commands.Pint' => 'object',
'solo.commands.Queue' => 'object',
'solo.commands.Typescript' => 'object',
'solo.dump_server_host' => 'string',
'typescript-transformer.auto_discover_types' => 'array',
'typescript-transformer.collectors' => 'array',
'typescript-transformer.transformers' => 'array',
'typescript-transformer.default_type_replacements.DateTime' => 'string',
'typescript-transformer.default_type_replacements.DateTimeImmutable' => 'string',
'typescript-transformer.default_type_replacements.Carbon\CarbonInterface' => 'string',
'typescript-transformer.default_type_replacements.Carbon\CarbonImmutable' => 'string',
'typescript-transformer.default_type_replacements.Carbon\Carbon' => 'string',
'typescript-transformer.default_type_replacements.Illuminate\Support\Carbon' => 'string',
'typescript-transformer.output_file' => 'string',
'typescript-transformer.writer' => 'string',
'typescript-transformer.formatter' => 'string',
'typescript-transformer.transform_to_native_enums' => 'boolean',
'typescript-transformer.transform_null_to_optional' => 'boolean',
'hashing.driver' => 'string',
'hashing.bcrypt.rounds' => 'string',
'hashing.bcrypt.verify' => 'boolean',
'hashing.bcrypt.limit' => 'NULL',
'hashing.argon.memory' => 'integer',
'hashing.argon.threads' => 'integer',
'hashing.argon.time' => 'integer',
'hashing.argon.verify' => 'boolean',
'hashing.rehash_on_login' => 'boolean',
'concurrency.default' => 'string',
'broadcasting.default' => 'string',
'broadcasting.connections.reverb.driver' => 'string',
'broadcasting.connections.reverb.key' => 'NULL',
'broadcasting.connections.reverb.secret' => 'NULL',
'broadcasting.connections.reverb.app_id' => 'NULL',
'broadcasting.connections.reverb.options.host' => 'NULL',
'broadcasting.connections.reverb.options.port' => 'integer',
'broadcasting.connections.reverb.options.scheme' => 'string',
'broadcasting.connections.reverb.options.useTLS' => 'boolean',
'broadcasting.connections.reverb.client_options' => 'array',
'broadcasting.connections.pusher.driver' => 'string',
'broadcasting.connections.pusher.key' => 'NULL',
'broadcasting.connections.pusher.secret' => 'NULL',
'broadcasting.connections.pusher.app_id' => 'NULL',
'broadcasting.connections.pusher.options.cluster' => 'NULL',
'broadcasting.connections.pusher.options.host' => 'string',
'broadcasting.connections.pusher.options.port' => 'integer',
'broadcasting.connections.pusher.options.scheme' => 'string',
'broadcasting.connections.pusher.options.encrypted' => 'boolean',
'broadcasting.connections.pusher.options.useTLS' => 'boolean',
'broadcasting.connections.pusher.client_options' => 'array',
'broadcasting.connections.ably.driver' => 'string',
'broadcasting.connections.ably.key' => 'NULL',
'broadcasting.connections.log.driver' => 'string',
'broadcasting.connections.null.driver' => 'string',
'view.paths' => 'array',
'view.compiled' => 'string',
'gravatar.default.size' => 'integer',
'gravatar.default.fallback' => 'string',
'gravatar.default.secure' => 'boolean',
'gravatar.default.maximumRating' => 'string',
'gravatar.default.forceDefault' => 'boolean',
'gravatar.default.forceExtension' => 'string',
'inertia.ssr.enabled' => 'boolean',
'inertia.ssr.url' => 'string',
'inertia.testing.ensure_pages_exist' => 'boolean',
'inertia.testing.page_paths' => 'array',
'inertia.testing.page_extensions' => 'array',
'inertia.history.encrypt' => 'boolean',
'flare.key' => 'NULL',
'flare.flare_middleware' => 'array',
'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddLogs.maximum_number_of_collected_logs' => 'integer',
'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddQueries.maximum_number_of_collected_queries' => 'integer',
'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddQueries.report_query_bindings' => 'boolean',
'flare.flare_middleware.Spatie\LaravelIgnition\FlareMiddleware\AddJobs.max_chained_job_reporting_depth' => 'integer',
'flare.flare_middleware.Spatie\FlareClient\FlareMiddleware\CensorRequestBodyFields.censor_fields' => 'array',
'flare.flare_middleware.Spatie\FlareClient\FlareMiddleware\CensorRequestHeaders.headers' => 'array',
'flare.send_logs_as_events' => 'boolean',
'ignition.editor' => 'string',
'ignition.theme' => 'string',
'ignition.enable_share_button' => 'boolean',
'ignition.register_commands' => 'boolean',
'ignition.solution_providers' => 'array',
'ignition.ignored_solution_providers' => 'array',
'ignition.enable_runnable_solutions' => 'NULL',
'ignition.remote_sites_path' => 'string',
'ignition.local_sites_path' => 'string',
'ignition.housekeeping_endpoint_prefix' => 'string',
'ignition.settings_file_path' => 'string',
'ignition.recorders' => 'array',
'ignition.open_ai_key' => 'NULL',
'ignition.with_stack_frame_arguments' => 'boolean',
'ignition.argument_reducers' => 'array',
'ide-helper.filename' => 'string',
'ide-helper.models_filename' => 'string',
'ide-helper.meta_filename' => 'string',
'ide-helper.include_fluent' => 'boolean',
'ide-helper.include_factory_builders' => 'boolean',
'ide-helper.write_model_magic_where' => 'boolean',
'ide-helper.write_model_external_builder_methods' => 'boolean',
'ide-helper.write_model_relation_count_properties' => 'boolean',
'ide-helper.write_eloquent_model_mixins' => 'boolean',
'ide-helper.include_helpers' => 'boolean',
'ide-helper.helper_files' => 'array',
'ide-helper.model_locations' => 'array',
'ide-helper.ignored_models' => 'array',
'ide-helper.model_hooks' => 'array',
'ide-helper.extra.Eloquent' => 'array',
'ide-helper.extra.Session' => 'array',
'ide-helper.magic' => 'array',
'ide-helper.interfaces' => 'array',
'ide-helper.model_camel_case_properties' => 'boolean',
'ide-helper.type_overrides.integer' => 'string',
'ide-helper.type_overrides.boolean' => 'string',
'ide-helper.include_class_docblocks' => 'boolean',
'ide-helper.force_fqn' => 'boolean',
'ide-helper.use_generics_annotations' => 'boolean',
'ide-helper.additional_relation_types' => 'array',
'ide-helper.additional_relation_return_types' => 'array',
'ide-helper.enforce_nullable_relationships' => 'boolean',
'ide-helper.post_migrate' => 'array',
'ide-helper.macroable_traits' => 'array',
'tinker.commands' => 'array',
'tinker.alias' => 'array',
'tinker.dont_alias' => 'array',
]));
override(Repository::get(), map([
'app.name' => 'string',
'app.env' => 'string',
'app.debug' => 'boolean',
'app.url' => 'string',
'app.frontend_url' => 'string',
'app.asset_url' => 'NULL',
'app.timezone' => 'string',
'app.locale' => 'string',
'app.fallback_locale' => 'string',
'app.faker_locale' => 'string',
'app.cipher' => 'string',
'app.key' => 'string',
'app.previous_keys' => 'array',
'app.maintenance.driver' => 'string',
'app.maintenance.store' => 'string',
'app.providers' => 'array',
'app.aliases.App' => 'string',
'app.aliases.Arr' => 'string',
'app.aliases.Artisan' => 'string',
'app.aliases.Auth' => 'string',
'app.aliases.Blade' => 'string',
'app.aliases.Broadcast' => 'string',
'app.aliases.Bus' => 'string',
'app.aliases.Cache' => 'string',
'app.aliases.Concurrency' => 'string',
'app.aliases.Config' => 'string',
'app.aliases.Context' => 'string',
'app.aliases.Cookie' => 'string',
'app.aliases.Crypt' => 'string',
'app.aliases.Date' => 'string',
'app.aliases.DB' => 'string',
'app.aliases.Eloquent' => 'string',
'app.aliases.Event' => 'string',
'app.aliases.File' => 'string',
'app.aliases.Gate' => 'string',
'app.aliases.Hash' => 'string',
'app.aliases.Http' => 'string',
'app.aliases.Js' => 'string',
'app.aliases.Lang' => 'string',
'app.aliases.Log' => 'string',
'app.aliases.Mail' => 'string',
'app.aliases.Notification' => 'string',
'app.aliases.Number' => 'string',
'app.aliases.Password' => 'string',
'app.aliases.Process' => 'string',
'app.aliases.Queue' => 'string',
'app.aliases.RateLimiter' => 'string',
'app.aliases.Redirect' => 'string',
'app.aliases.Request' => 'string',
'app.aliases.Response' => 'string',
'app.aliases.Route' => 'string',
'app.aliases.Schedule' => 'string',
'app.aliases.Schema' => 'string',
'app.aliases.Session' => 'string',
'app.aliases.Storage' => 'string',
'app.aliases.Str' => 'string',
'app.aliases.URL' => 'string',
'app.aliases.Uri' => 'string',
'app.aliases.Validator' => 'string',
'app.aliases.View' => 'string',
'app.aliases.Vite' => 'string',
'auth.defaults.guard' => 'string',
'auth.defaults.passwords' => 'string',
'auth.guards.web.driver' => 'string',
'auth.guards.web.provider' => 'string',
'auth.guards.sanctum.driver' => 'string',
'auth.guards.sanctum.provider' => 'NULL',
'auth.providers.users.driver' => 'string',
'auth.providers.users.model' => 'string',
'auth.passwords.users.provider' => 'string',
'auth.passwords.users.table' => 'string',
'auth.passwords.users.expire' => 'integer',
'auth.passwords.users.throttle' => 'integer',
'auth.password_timeout' => 'integer',
'cache.default' => 'string',
'cache.stores.array.driver' => 'string',
'cache.stores.array.serialize' => 'boolean',
'cache.stores.database.driver' => 'string',
'cache.stores.database.connection' => 'NULL',
'cache.stores.database.table' => 'string',
'cache.stores.database.lock_connection' => 'NULL',
'cache.stores.database.lock_table' => 'NULL',