-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan-baseline.neon
More file actions
821 lines (658 loc) · 35.1 KB
/
phpstan-baseline.neon
File metadata and controls
821 lines (658 loc) · 35.1 KB
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
parameters:
ignoreErrors:
-
message: "#^Function array_column_of_list_or_map\\(\\) has parameter \\$filters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/functions.php
-
message: "#^Function array_column_of_list_or_map\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/functions.php
-
message: "#^Function class_attribute\\(\\) should return \\(T of object\\)\\|null but returns object\\.$#"
count: 1
path: framework/functions.php
-
message: "#^Function config\\(\\) should return Framework\\\\Configurations\\\\ConfigurationInterface but returns object\\.$#"
count: 1
path: framework/functions.php
-
message: "#^Function maps_to_objects\\(\\) has parameter \\$maps with no value type specified in iterable type array\\.$#"
count: 1
path: framework/functions.php
-
message: "#^Function maps_to_objects\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/functions.php
-
message: "#^Function method_attribute\\(\\) should return \\(T of object\\)\\|null but returns object\\.$#"
count: 1
path: framework/functions.php
-
message: "#^Function objects_to_maps\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/functions.php
-
message: "#^Function resolve_namespace\\(\\) never returns null so it can be removed from the return type\\.$#"
count: 1
path: framework/functions.php
-
message: "#^PHPDoc tag @param for parameter \\$attribute with type class\\-string\\<T of object\\>\\|T of object is not subtype of native type string\\.$#"
count: 2
path: framework/functions.php
-
message: "#^PHPDoc tag @return with type T is not subtype of native type object\\.$#"
count: 1
path: framework/functions.php
-
message: "#^Parameter \\#1 \\$class of method Framework\\\\FactoryManagers\\\\FactoryProducerInterface\\:\\:get\\(\\) expects class\\-string\\<object\\>, class\\-string\\<T\\> given\\.$#"
count: 1
path: framework/functions.php
-
message: "#^Parameter \\#1 \\$objectOrClass of class ReflectionClass constructor expects class\\-string\\<T of object\\>\\|T of object, object\\|string given\\.$#"
count: 3
path: framework/functions.php
-
message: "#^Parameter \\#2 \\$subject of function preg_match expects string, string\\|false given\\.$#"
count: 1
path: framework/functions.php
-
message: "#^Template type T of function class_attribute\\(\\) is not referenced in a parameter\\.$#"
count: 1
path: framework/functions.php
-
message: "#^Template type T of function method_attribute\\(\\) is not referenced in a parameter\\.$#"
count: 1
path: framework/functions.php
-
message: "#^Unable to resolve the template type T in call to method Framework\\\\FactoryManagers\\\\FactoryProducerInterface\\:\\:get\\(\\)$#"
count: 1
path: framework/functions.php
-
message: "#^Call to an undefined method Framework\\\\FactoryManagers\\\\FactoryManagerInterface\\:\\:flush\\(\\)\\.$#"
count: 1
path: framework/src/Application/Application.php
-
message: "#^Method Framework\\\\Application\\\\Application\\:\\:__construct\\(\\) has parameter \\$middlewareClasses with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Application/Application.php
-
message: "#^Parameter \\#1 \\$class of method Framework\\\\FactoryManagers\\\\FactoryProducerInterface\\:\\:get\\(\\) expects class\\-string\\<object\\>, string given\\.$#"
count: 1
path: framework/src/Application/Application.php
-
message: "#^Parameter \\#1 \\$middlewares of class Framework\\\\Http\\\\Middlewares\\\\MiddlewareChain constructor expects array\\<Framework\\\\Http\\\\Middlewares\\\\MiddlewareInterface\\>, array\\<object\\> given\\.$#"
count: 1
path: framework/src/Application/Application.php
-
message: "#^Parameter \\#1 \\$routeMatch of method Framework\\\\Application\\\\Application\\:\\:handleRequest\\(\\) expects Framework\\\\Http\\\\Routers\\\\RouteMatch, Framework\\\\Http\\\\Routers\\\\RouteMatchInterface given\\.$#"
count: 1
path: framework/src/Application/Application.php
-
message: "#^Unable to resolve the template type T in call to method Framework\\\\FactoryManagers\\\\FactoryProducerInterface\\:\\:get\\(\\)$#"
count: 1
path: framework/src/Application/Application.php
-
message: "#^Call to an undefined method Framework\\\\Application\\\\ApplicationHandlerInterface\\:\\:flush\\(\\)\\.$#"
count: 1
path: framework/src/Application/Worker/FrankenPHPWorker.php
-
message: "#^Call to an undefined method object\\:\\:boot\\(\\)\\.$#"
count: 1
path: framework/src/Bootstrappers/FinalizeBootstrapper.php
-
message: "#^Method Framework\\\\Bootstrappers\\\\FinalizeBootstrapper\\:\\:registerCommands\\(\\) has parameter \\$commandClasses with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Bootstrappers/FinalizeBootstrapper.php
-
message: "#^Method Framework\\\\Bootstrappers\\\\FinalizeBootstrapper\\:\\:registerRoutes\\(\\) has parameter \\$routes with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Bootstrappers/FinalizeBootstrapper.php
-
message: "#^Call to an undefined method object\\:\\:boot\\(\\)\\.$#"
count: 1
path: framework/src/Bootstrappers/FrameworkBootstrapper.php
-
message: "#^Method Framework\\\\Bootstrappers\\\\FrameworkBootstrapper\\:\\:registerConfigurations\\(\\) has parameter \\$configurations with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Bootstrappers/FrameworkBootstrapper.php
-
message: "#^Method Framework\\\\Bootstrappers\\\\FrameworkBootstrapper\\:\\:registerFactories\\(\\) has parameter \\$factoryClasses with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Bootstrappers/FrameworkBootstrapper.php
-
message: "#^Method Framework\\\\Bootstrappers\\\\FrameworkBootstrapper\\:\\:registerNamedConfigurations\\(\\) has parameter \\$authConfiguration with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Bootstrappers/FrameworkBootstrapper.php
-
message: "#^Method Framework\\\\Bootstrappers\\\\FrameworkBootstrapper\\:\\:registerNamedConfigurations\\(\\) has parameter \\$consoleConfiguration with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Bootstrappers/FrameworkBootstrapper.php
-
message: "#^Method Framework\\\\Bootstrappers\\\\FrameworkBootstrapper\\:\\:registerNamedConfigurations\\(\\) has parameter \\$databaseConfiguration with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Bootstrappers/FrameworkBootstrapper.php
-
message: "#^Method Framework\\\\Bootstrappers\\\\FrameworkBootstrapper\\:\\:registerNamedConfigurations\\(\\) has parameter \\$eventConfiguration with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Bootstrappers/FrameworkBootstrapper.php
-
message: "#^Method Framework\\\\Bootstrappers\\\\FrameworkBootstrapper\\:\\:registerNamedConfigurations\\(\\) has parameter \\$routerConfiguration with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Bootstrappers/FrameworkBootstrapper.php
-
message: "#^Method Framework\\\\Bootstrappers\\\\FrameworkBootstrapper\\:\\:registerNamedConfigurations\\(\\) has parameter \\$viewConfiguration with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Bootstrappers/FrameworkBootstrapper.php
-
message: "#^Method Framework\\\\Configurations\\\\Configuration\\:\\:__construct\\(\\) has parameter \\$configurations with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Configurations/Configuration.php
-
message: "#^Method Framework\\\\Configurations\\\\Configuration\\:\\:register\\(\\) has parameter \\$configurations with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Configurations/Configuration.php
-
message: "#^Method Framework\\\\Configurations\\\\ConfigurationRegistrarInterface\\:\\:register\\(\\) has parameter \\$configurations with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Configurations/ConfigurationRegistrarInterface.php
-
message: "#^Method Framework\\\\Consoles\\\\CommandRegistrarInterface\\:\\:register\\(\\) has parameter \\$commandClasses with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Consoles/CommandRegistrarInterface.php
-
message: "#^Method Framework\\\\Consoles\\\\CommandRunnerInterface\\:\\:run\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Consoles/CommandRunnerInterface.php
-
message: "#^Method Framework\\\\Consoles\\\\Commands\\\\CommandInterface\\:\\:run\\(\\) has parameter \\$argv with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Consoles/Commands/CommandInterface.php
-
message: "#^Method Framework\\\\Consoles\\\\Commands\\\\DequeueCommand\\:\\:run\\(\\) has parameter \\$argv with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Consoles/Commands/DequeueCommand.php
-
message: "#^Method Framework\\\\Consoles\\\\Console\\:\\:executeCommand\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Consoles/Console.php
-
message: "#^Method Framework\\\\Consoles\\\\Console\\:\\:executeCommand\\(\\) has parameter \\$resolvedCommands with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Consoles/Console.php
-
message: "#^Method Framework\\\\Consoles\\\\Console\\:\\:listCommands\\(\\) has parameter \\$resolvedCommands with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Consoles/Console.php
-
message: "#^Method Framework\\\\Consoles\\\\Console\\:\\:register\\(\\) has parameter \\$commandClasses with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Consoles/Console.php
-
message: "#^Method Framework\\\\Consoles\\\\Console\\:\\:resolveCommandClass\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Consoles/Console.php
-
message: "#^Method Framework\\\\Consoles\\\\Console\\:\\:resolveCommands\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Consoles/Console.php
-
message: "#^Method Framework\\\\Consoles\\\\Console\\:\\:run\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Consoles/Console.php
-
message: "#^Parameter \\#1 \\$class of method Framework\\\\FactoryManagers\\\\FactoryProducerInterface\\:\\:get\\(\\) expects class\\-string\\<Framework\\\\Consoles\\\\Commands\\\\CommandInterface\\>, class\\-string\\<Framework\\\\Consoles\\\\Commands\\\\CommandInterface\\>\\|Framework\\\\Consoles\\\\Commands\\\\CommandInterface given\\.$#"
count: 1
path: framework/src/Consoles/Console.php
-
message: "#^Parameter \\#1 \\$objectOrClass of class ReflectionClass constructor expects class\\-string\\<T of object\\>\\|T of object, string given\\.$#"
count: 1
path: framework/src/Consoles/Console.php
-
message: "#^Property Framework\\\\Consoles\\\\Console\\:\\:\\$commandClasses type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Consoles/Console.php
-
message: "#^Method Framework\\\\Consoles\\\\Outputs\\\\ConsoleOutput\\:\\:transform\\(\\) should return string but returns mixed\\.$#"
count: 1
path: framework/src/Consoles/Outputs/ConsoleOutput.php
-
message: "#^Method Framework\\\\Consoles\\\\Outputs\\\\ConsoleOutput\\:\\:transform\\(\\) should return string but returns string\\|false\\.$#"
count: 1
path: framework/src/Consoles/Outputs/ConsoleOutput.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 1
path: framework/src/Consoles/Outputs/ConsoleOutputFactory.php
-
message: "#^Parameter \\#1 \\$class of method Framework\\\\FactoryManagers\\\\FactoryProducerInterface\\:\\:get\\(\\) expects class\\-string\\<object\\>, string given\\.$#"
count: 1
path: framework/src/Consoles/Outputs/ConsoleOutputFactory.php
-
message: "#^Unable to resolve the template type T in call to method Framework\\\\FactoryManagers\\\\FactoryProducerInterface\\:\\:get\\(\\)$#"
count: 1
path: framework/src/Consoles/Outputs/ConsoleOutputFactory.php
-
message: "#^Cannot call method fetchAll\\(\\) on PDOStatement\\|false\\.$#"
count: 1
path: framework/src/Databases/DatabaseManager.php
-
message: "#^Method Framework\\\\Databases\\\\DatabaseManager\\:\\:createOrderByStatement\\(\\) has parameter \\$orderBy with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Databases/DatabaseManager.php
-
message: "#^Method Framework\\\\Databases\\\\DatabaseManager\\:\\:createSelectStatement\\(\\) has parameter \\$filters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Databases/DatabaseManager.php
-
message: "#^Method Framework\\\\Databases\\\\DatabaseManager\\:\\:createSelectStatement\\(\\) has parameter \\$orderBy with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Databases/DatabaseManager.php
-
message: "#^Method Framework\\\\Databases\\\\DatabaseManager\\:\\:createSelectStatement\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Databases/DatabaseManager.php
-
message: "#^Method Framework\\\\Databases\\\\DatabaseManager\\:\\:createWhereStatement\\(\\) has parameter \\$filters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Databases/DatabaseManager.php
-
message: "#^Method Framework\\\\Databases\\\\DatabaseManager\\:\\:executeSelectStatement\\(\\) has parameter \\$filters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Databases/DatabaseManager.php
-
message: "#^Method Framework\\\\Databases\\\\DatabaseManager\\:\\:executeSelectStatement\\(\\) has parameter \\$orderBy with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Databases/DatabaseManager.php
-
message: "#^Method Framework\\\\Databases\\\\DatabaseManager\\:\\:getFilterGroupStatement\\(\\) has parameter \\$filters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Databases/DatabaseManager.php
-
message: "#^Method Framework\\\\Databases\\\\DatabaseManager\\:\\:select\\(\\) has parameter \\$filters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Databases/DatabaseManager.php
-
message: "#^Method Framework\\\\Databases\\\\DatabaseManager\\:\\:select\\(\\) has parameter \\$orderBy with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Databases/DatabaseManager.php
-
message: "#^Method Framework\\\\Databases\\\\DatabaseManager\\:\\:selectAll\\(\\) has parameter \\$filters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Databases/DatabaseManager.php
-
message: "#^Method Framework\\\\Databases\\\\DatabaseManager\\:\\:selectAll\\(\\) has parameter \\$orderBy with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Databases/DatabaseManager.php
-
message: "#^Parameter \\#1 \\$dsn of class PDO constructor expects string, mixed given\\.$#"
count: 1
path: framework/src/Databases/PDOFactory.php
-
message: "#^Method Framework\\\\Dependencies\\\\Dependency\\:\\:__construct\\(\\) has parameter \\$attributes with generic class ReflectionAttribute but does not specify its types\\: T$#"
count: 1
path: framework/src/Dependencies/Dependency.php
-
message: "#^Call to an undefined method ReflectionType\\:\\:getName\\(\\)\\.$#"
count: 1
path: framework/src/Dependencies/DependencyResolver.php
-
message: "#^Parameter \\#1 \\$objectOrClass of class ReflectionClass constructor expects class\\-string\\<T of object\\>\\|T of object, string given\\.$#"
count: 2
path: framework/src/Dependencies/DependencyResolver.php
-
message: "#^Call to an undefined method object\\:\\:notify\\(\\)\\.$#"
count: 2
path: framework/src/Events/Event.php
-
message: "#^Unsafe usage of new static\\(\\)\\.$#"
count: 1
path: framework/src/Events/Event.php
-
message: "#^Empty array passed to foreach\\.$#"
count: 1
path: framework/src/Events/EventManagers/EventManager.php
-
message: "#^Offset 'priority' does not exist on class\\-string\\<Framework\\\\Events\\\\ObservableInterface\\>\\.$#"
count: 2
path: framework/src/Events/EventManagers/EventManager.php
-
message: "#^Property Framework\\\\Events\\\\EventManagers\\\\EventManager\\:\\:\\$observables \\(array\\<array\\<class\\-string\\<Framework\\\\Events\\\\ObservableInterface\\>\\>\\>\\) does not accept array\\<array\\<array\\<string, \\(callable\\)\\|int\\>\\|class\\-string\\<Framework\\\\Events\\\\ObservableInterface\\>\\>\\>\\.$#"
count: 1
path: framework/src/Events/EventManagers/EventManager.php
-
message: "#^Property Framework\\\\Events\\\\EventManagers\\\\EventManager\\:\\:\\$registeredObservers type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Events/EventManagers/EventManager.php
-
message: "#^Variable \\$observables on left side of \\?\\? always exists and is not nullable\\.$#"
count: 1
path: framework/src/Events/EventManagers/EventManager.php
-
message: "#^Parameter \\#1 \\$class of method Framework\\\\FactoryManagers\\\\FactoryProducerInterface\\:\\:get\\(\\) expects class\\-string\\<object\\>, string given\\.$#"
count: 1
path: framework/src/Factories/AutowireFactory.php
-
message: "#^Unable to resolve the template type T in call to method Framework\\\\FactoryManagers\\\\FactoryProducerInterface\\:\\:get\\(\\)$#"
count: 1
path: framework/src/Factories/AutowireFactory.php
-
message: "#^Access to an undefined property object\\:\\:\\$factoryClass\\.$#"
count: 1
path: framework/src/FactoryManagers/FactoryManager.php
-
message: "#^Method Framework\\\\FactoryManagers\\\\FactoryManager\\:\\:__construct\\(\\) has parameter \\$factoryClasses with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/FactoryManagers/FactoryManager.php
-
message: "#^Method Framework\\\\FactoryManagers\\\\FactoryManager\\:\\:get\\(\\) should return T of object but returns object\\.$#"
count: 2
path: framework/src/FactoryManagers/FactoryManager.php
-
message: "#^Method Framework\\\\FactoryManagers\\\\FactoryManager\\:\\:produce\\(\\) should return T of object but returns object\\.$#"
count: 2
path: framework/src/FactoryManagers/FactoryManager.php
-
message: "#^Method Framework\\\\FactoryManagers\\\\FactoryManager\\:\\:register\\(\\) has parameter \\$factoryClasses with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/FactoryManagers/FactoryManager.php
-
message: "#^Parameter \\#1 \\$class of method Framework\\\\FactoryManagers\\\\FactoryManager\\<T\\>\\:\\:get\\(\\) expects class\\-string\\<T\\>, class\\-string given\\.$#"
count: 1
path: framework/src/FactoryManagers/FactoryManager.php
-
message: "#^Parameter \\#1 \\$class of method Framework\\\\FactoryManagers\\\\FactoryManager\\<T\\>\\:\\:produce\\(\\) expects class\\-string\\<T\\>, class\\-string given\\.$#"
count: 1
path: framework/src/FactoryManagers/FactoryManager.php
-
message: "#^Parameter \\#1 \\$class of method Framework\\\\FactoryManagers\\\\FactoryManager\\<T\\>\\:\\:produce\\(\\) expects class\\-string\\<T\\>, class\\-string\\<T of object\\> given\\.$#"
count: 1
path: framework/src/FactoryManagers/FactoryManager.php
-
message: "#^Method Framework\\\\FactoryManagers\\\\FactoryRegistrarInterface\\:\\:register\\(\\) has parameter \\$factoryClasses with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/FactoryManagers/FactoryRegistrarInterface.php
-
message: "#^Method Framework\\\\Http\\\\Requests\\\\DecoratedRequest\\:\\:setRouteParameters\\(\\) has parameter \\$routeParameters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Http/Requests/DecoratedRequest.php
-
message: "#^Method Framework\\\\Http\\\\Requests\\\\Request\\:\\:setRouteParameters\\(\\) has parameter \\$routeParameters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Http/Requests/Request.php
-
message: "#^Parameter \\#1 \\$url of function parse_url expects string, mixed given\\.$#"
count: 1
path: framework/src/Http/Requests/Request.php
-
message: "#^Parameter \\#1 \\$value of static method Framework\\\\Http\\\\HttpMethod\\:\\:tryFrom\\(\\) expects int\\|string, mixed given\\.$#"
count: 1
path: framework/src/Http/Requests/Request.php
-
message: "#^Method Framework\\\\Http\\\\Requests\\\\Request\\\\Cookies\\:\\:__construct\\(\\) has parameter \\$cookies with no type specified\\.$#"
count: 1
path: framework/src/Http/Requests/Request/Cookies.php
-
message: "#^Method Framework\\\\Http\\\\Requests\\\\Request\\\\Payload\\:\\:__construct\\(\\) has parameter \\$payload with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Http/Requests/Request/Payload.php
-
message: "#^Method Framework\\\\Http\\\\Requests\\\\Request\\\\Payload\\:\\:toArray\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Http/Requests/Request/Payload.php
-
message: "#^Method Framework\\\\Http\\\\Requests\\\\Request\\\\QueryParameters\\:\\:__construct\\(\\) has parameter \\$queryParameters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Http/Requests/Request/QueryParameters.php
-
message: "#^Method Framework\\\\Http\\\\Requests\\\\Request\\\\RouteParameters\\:\\:__construct\\(\\) has parameter \\$routeParameters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Http/Requests/Request/RouteParameters.php
-
message: "#^Method Framework\\\\Http\\\\Requests\\\\Request\\\\Server\\:\\:__construct\\(\\) has parameter \\$server with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Http/Requests/Request/Server.php
-
message: "#^Method Framework\\\\Http\\\\Requests\\\\Request\\\\Session\\:\\:__construct\\(\\) has parameter \\$session with no type specified\\.$#"
count: 1
path: framework/src/Http/Requests/Request/Session.php
-
message: "#^Method Framework\\\\Http\\\\Requests\\\\RequestInterface\\:\\:setRouteParameters\\(\\) has parameter \\$routeParameters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Http/Requests/RequestInterface.php
-
message: "#^Call to an undefined method object\\:\\:validate\\(\\)\\.$#"
count: 1
path: framework/src/Http/Requests/ValidatableRequest.php
-
message: "#^Method Framework\\\\Http\\\\Routers\\\\RouteAssemblerInterface\\:\\:assemble\\(\\) has parameter \\$parameters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Http/Routers/RouteAssemblerInterface.php
-
message: "#^Method Framework\\\\Http\\\\Routers\\\\Router\\:\\:assemble\\(\\) has parameter \\$parameters with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Http/Routers/Router.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 1
path: framework/src/Http/Routers/RouterFactory.php
-
message: "#^Method Framework\\\\Interfaces\\\\FromArrayInterface\\:\\:fromArray\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Interfaces/FromArrayInterface.php
-
message: "#^Method Framework\\\\Interfaces\\\\ToArrayInterface\\:\\:toArray\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Interfaces/ToArrayInterface.php
-
message: "#^Call to an undefined method object\\:\\:queue\\(\\)\\.$#"
count: 1
path: framework/src/Jobs/Job.php
-
message: "#^Unsafe usage of new static\\(\\)\\.$#"
count: 1
path: framework/src/Jobs/Job.php
-
message: "#^Parameter \\#1 \\$observableClass of method Framework\\\\Events\\\\EventManagers\\\\EventAttacherInterface\\:\\:attach\\(\\) expects class\\-string\\<Framework\\\\Events\\\\ObservableInterface\\>, string given\\.$#"
count: 1
path: framework/src/Listeners/BenchmarkListener.php
-
message: "#^Property Framework\\\\Listeners\\\\BenchmarkListener\\:\\:\\$occurredTimes type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Listeners/BenchmarkListener.php
-
message: "#^Method Framework\\\\Providers\\\\Commands\\\\CommandProvider\\:\\:__construct\\(\\) has parameter \\$paths with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Providers/Commands/CommandProvider.php
-
message: "#^Method Framework\\\\Providers\\\\Observers\\\\ObserverProvider\\:\\:__construct\\(\\) has parameter \\$paths with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Providers/Observers/ObserverProvider.php
-
message: "#^Cannot access offset 0 on mixed\\.$#"
count: 2
path: framework/src/Providers/PathsProvider.php
-
message: "#^Method Framework\\\\Providers\\\\PathsProvider\\:\\:__construct\\(\\) has parameter \\$paths with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Providers/PathsProvider.php
-
message: "#^Method Framework\\\\Providers\\\\PathsProvider\\:\\:fromPathsRecursively\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Providers/PathsProvider.php
-
message: "#^Parameter \\#1 \\$filePath of function resolve_namespace expects string, mixed given\\.$#"
count: 1
path: framework/src/Providers/PathsProvider.php
-
message: "#^Parameter \\#1 \\$path of function basename expects string, mixed given\\.$#"
count: 1
path: framework/src/Providers/PathsProvider.php
-
message: "#^Access to an undefined property object\\:\\:\\$constraints\\.$#"
count: 1
path: framework/src/Providers/Routes/RouteProvider.php
-
message: "#^Access to an undefined property object\\:\\:\\$httpMethod\\.$#"
count: 1
path: framework/src/Providers/Routes/RouteProvider.php
-
message: "#^Access to an undefined property object\\:\\:\\$middlewareClasses\\.$#"
count: 1
path: framework/src/Providers/Routes/RouteProvider.php
-
message: "#^Access to an undefined property object\\:\\:\\$priority\\.$#"
count: 1
path: framework/src/Providers/Routes/RouteProvider.php
-
message: "#^Access to an undefined property object\\:\\:\\$route\\.$#"
count: 1
path: framework/src/Providers/Routes/RouteProvider.php
-
message: "#^Method Framework\\\\Providers\\\\Routes\\\\RouteProvider\\:\\:__construct\\(\\) has parameter \\$paths with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Providers/Routes/RouteProvider.php
-
message: "#^Method Framework\\\\Providers\\\\ViewHelpers\\\\ViewHelperPathsProvider\\:\\:__construct\\(\\) has parameter \\$paths with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Providers/ViewHelpers/ViewHelperPathsProvider.php
-
message: "#^Instanceof between class\\-string\\<Framework\\\\Queues\\\\QueueableInterface\\> and Framework\\\\Interfaces\\\\ArrayableInterface will always evaluate to false\\.$#"
count: 1
path: framework/src/Queues/Database/DatabaseQueue.php
-
message: "#^Method Framework\\\\Queues\\\\Database\\\\QueueRow\\:\\:__construct\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Queues/Database/QueueRow.php
-
message: "#^Method Framework\\\\Queues\\\\Database\\\\QueueRow\\:\\:fromArray\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Queues/Database/QueueRow.php
-
message: "#^Method Framework\\\\Queues\\\\Database\\\\QueueRow\\:\\:new\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Queues/Database/QueueRow.php
-
message: "#^Method Framework\\\\Queues\\\\Database\\\\QueueRow\\:\\:toArray\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Queues/Database/QueueRow.php
-
message: "#^Parameter \\#1 \\$callback of function array_map expects \\(callable\\(string\\)\\: mixed\\)\\|null, Closure\\(array\\)\\: Framework\\\\Sessions\\\\FlashMessengers\\\\FlashMessage given\\.$#"
count: 1
path: framework/src/Sessions/FlashMessengers/FlashMessage.php
-
message: "#^Cannot access an offset on mixed\\.$#"
count: 1
path: framework/src/Sessions/FlashMessengers/FlashMessenger.php
-
message: "#^Cannot access offset 'messages' on mixed\\.$#"
count: 2
path: framework/src/Sessions/FlashMessengers/FlashMessenger.php
-
message: "#^Method Framework\\\\Sessions\\\\FlashMessengers\\\\FlashMessenger\\:\\:getMessages\\(\\) should return array\\<Framework\\\\Sessions\\\\FlashMessengers\\\\FlashMessage\\> but returns mixed\\.$#"
count: 1
path: framework/src/Sessions/FlashMessengers/FlashMessenger.php
-
message: "#^Method Framework\\\\Validations\\\\Validation\\:\\:__construct\\(\\) has parameter \\$messages with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Validations/Validation.php
-
message: "#^Method Framework\\\\Validations\\\\Validation\\:\\:errors\\(\\) has parameter \\$messages with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Validations/Validation.php
-
message: "#^Argument of an invalid type mixed supplied for foreach, only iterables are supported\\.$#"
count: 1
path: framework/src/Validations/Validators/ListValidator.php
-
message: "#^Method Framework\\\\Validations\\\\Validators\\\\MapValidator\\:\\:modifyMessages\\(\\) has parameter \\$messages with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Validations/Validators/MapValidator.php
-
message: "#^Method Framework\\\\Validations\\\\Validators\\\\MapValidator\\:\\:modifyMessages\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Validations/Validators/MapValidator.php
-
message: "#^Anonymous function should return string but returns string\\|false\\.$#"
count: 1
path: framework/src/Views/ViewGenerator.php
-
message: "#^Method Framework\\\\Views\\\\ViewGenerator\\:\\:generate\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Views/ViewGenerator.php
-
message: "#^Method Framework\\\\Views\\\\ViewGeneratorInterface\\:\\:generate\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Views/ViewGeneratorInterface.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 1
path: framework/src/Views/ViewHelpers/CsrfToken.php
-
message: "#^Method Framework\\\\Views\\\\ViewHelpers\\\\GenerateView\\:\\:__invoke\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#"
count: 1
path: framework/src/Views/ViewHelpers/GenerateView.php
-
message: "#^Call to an undefined method object\\:\\:boot\\(\\)\\.$#"
count: 1
path: src/Bootstrappers/AppBootstrapper.php
-
message: "#^Method App\\\\Bootstrappers\\\\AppBootstrapper\\:\\:registerConfigurations\\(\\) has parameter \\$configurations with no value type specified in iterable type array\\.$#"
count: 1
path: src/Bootstrappers/AppBootstrapper.php
-
message: "#^Method App\\\\Bootstrappers\\\\AppBootstrapper\\:\\:registerNamedConfigurations\\(\\) has parameter \\$authConfiguration with no value type specified in iterable type array\\.$#"
count: 1
path: src/Bootstrappers/AppBootstrapper.php
-
message: "#^Method App\\\\Bootstrappers\\\\AppBootstrapper\\:\\:registerNamedConfigurations\\(\\) has parameter \\$consoleConfiguration with no value type specified in iterable type array\\.$#"
count: 1
path: src/Bootstrappers/AppBootstrapper.php
-
message: "#^Method App\\\\Bootstrappers\\\\AppBootstrapper\\:\\:registerNamedConfigurations\\(\\) has parameter \\$databaseConfiguration with no value type specified in iterable type array\\.$#"
count: 1
path: src/Bootstrappers/AppBootstrapper.php
-
message: "#^Method App\\\\Bootstrappers\\\\AppBootstrapper\\:\\:registerNamedConfigurations\\(\\) has parameter \\$eventConfiguration with no value type specified in iterable type array\\.$#"
count: 1
path: src/Bootstrappers/AppBootstrapper.php
-
message: "#^Method App\\\\Bootstrappers\\\\AppBootstrapper\\:\\:registerNamedConfigurations\\(\\) has parameter \\$routerConfiguration with no value type specified in iterable type array\\.$#"
count: 1
path: src/Bootstrappers/AppBootstrapper.php
-
message: "#^Method App\\\\Bootstrappers\\\\AppBootstrapper\\:\\:registerNamedConfigurations\\(\\) has parameter \\$viewConfiguration with no value type specified in iterable type array\\.$#"
count: 1
path: src/Bootstrappers/AppBootstrapper.php
-
message: "#^Call to an undefined method object\\:\\:notify\\(\\)\\.$#"
count: 2
path: src/Events/Registered.php
-
message: "#^Call to an undefined method object\\:\\:queue\\(\\)\\.$#"
count: 1
path: src/Events/Registered.php
-
message: "#^Parameter \\#1 \\$email of class App\\\\Events\\\\Registered constructor expects string, mixed given\\.$#"
count: 2
path: src/Events/Registered.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 2
path: src/Http/Requests/Auth/LoginRequest.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 4
path: src/Http/Requests/Auth/RegisterRequest.php
-
message: "#^Method App\\\\Models\\\\User\\:\\:fromArray\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#"
count: 1
path: src/Models/User.php
-
message: "#^Method App\\\\Models\\\\User\\:\\:toArray\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Models/User.php
-
message: "#^Cannot cast mixed to string\\.$#"
count: 1
path: src/Services/Auth/LoginService.php