-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan-baseline.php
1055 lines (1053 loc) · 40.1 KB
/
phpstan-baseline.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);
$ignoreErrors = [];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method BlitzPHP\\\\Traits\\\\Mixins\\\\HigherOrderCollectionProxy\\:\\:__invoke\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Cli/Commands/Utilities/About.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:errorBold\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Cli/Console/Command.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:infoBold\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Cli/Console/Command.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:okBold\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Cli/Console/Command.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:warnBold\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Cli/Console/Command.php',
];
$ignoreErrors[] = [
// identifier: property.notFound
'message' => '#^Access to an undefined property Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:\\$bold\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Cli/Console/Console.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Application\\|Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Cli/Console/Console.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Cli/Console/Console.php',
];
$ignoreErrors[] = [
// identifier: staticMethod.notFound
'message' => '#^Call to an undefined static method Nette\\\\Schema\\\\Expect\\:\\:closure\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Constants/schemas/middlewares.config.php',
];
$ignoreErrors[] = [
// identifier: method.templateTypeNotInParameter
'message' => '#^Template type T of method BlitzPHP\\\\Container\\\\Container\\:\\:make\\(\\) is not referenced in a parameter\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Container/Container.php',
];
$ignoreErrors[] = [
// identifier: property.notFound
'message' => '#^Access to an undefined property mindplay\\\\annotations\\\\IAnnotation\\:\\:\\$method\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Controllers/RestController.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to static method make\\(\\) on an unknown class Spatie\\\\Ignition\\\\Ignition\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Debug/Debugger.php',
];
$ignoreErrors[] = [
// identifier: booleanNot.alwaysFalse
'message' => '#^Negated boolean expression is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Debug/Toolbar.php',
];
$ignoreErrors[] = [
// identifier: variable.undefined
'message' => '#^Variable \\$result might not be defined\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Debug/Toolbar.php',
];
$ignoreErrors[] = [
// identifier: booleanOr.leftAlwaysTrue
'message' => '#^Left side of \\|\\| is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Event/EventManager.php',
];
$ignoreErrors[] = [
// identifier: phpDoc.parseError
'message' => '#^PHPDoc tag @method has invalid value \\(static void configure\\(callable \\$callback\\(RouteBuilder \\$route\\)\\) Configure les parametres de routing\\.\\)\\: Unexpected token "\\(", expected \'\\)\' at offset 63$#',
'count' => 1,
'path' => __DIR__ . '/src/Facades/Route.php',
];
$ignoreErrors[] = [
// identifier: return.unusedType
'message' => '#^Function img\\(\\) never returns void so it can be removed from the return type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Helpers/assets.php',
];
$ignoreErrors[] = [
// identifier: return.unusedType
'message' => '#^Function less_styles\\(\\) never returns void so it can be removed from the return type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Helpers/assets.php',
];
$ignoreErrors[] = [
// identifier: return.unusedType
'message' => '#^Function lib_scripts\\(\\) never returns void so it can be removed from the return type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Helpers/assets.php',
];
$ignoreErrors[] = [
// identifier: return.unusedType
'message' => '#^Function lib_styles\\(\\) never returns void so it can be removed from the return type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Helpers/assets.php',
];
$ignoreErrors[] = [
// identifier: return.unusedType
'message' => '#^Function scripts\\(\\) never returns void so it can be removed from the return type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Helpers/assets.php',
];
$ignoreErrors[] = [
// identifier: return.unusedType
'message' => '#^Function styles\\(\\) never returns void so it can be removed from the return type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Helpers/assets.php',
];
$ignoreErrors[] = [
// identifier: booleanNot.alwaysFalse
'message' => '#^Negated boolean expression is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Helpers/assets.php',
];
$ignoreErrors[] = [
// identifier: return.unusedType
'message' => '#^Function logger\\(\\) never returns void so it can be removed from the return type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Helpers/common.php',
];
$ignoreErrors[] = [
// identifier: variable.undefined
'message' => '#^Variable \\$result might not be defined\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Helpers/filesystem.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getFormat\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Http/Request.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getMimeType\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Http/Request.php',
];
$ignoreErrors[] = [
// identifier: return.type
'message' => '#^Method BlitzPHP\\\\Http\\\\Request\\:\\:validation\\(\\) should return BlitzPHP\\\\Validation\\\\Validation but returns Dimtrovich\\\\Validation\\\\Validation\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Http/Request.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Parameter \\$default of method BlitzPHP\\\\Http\\\\Request\\:\\:old\\(\\) has invalid type BlitzPHP\\\\Wolke\\\\Model\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Http/Request.php',
];
$ignoreErrors[] = [
// identifier: notIdentical.alwaysTrue
'message' => '#^Strict comparison using \\!\\=\\= between null and BlitzPHP\\\\Session\\\\Store will always evaluate to true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Http/Request.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method DateTimeInterface\\:\\:setTimezone\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Http/Response.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to constant DEBUG_SERVER on an unknown class PHPMailer\\\\PHPMailer\\\\SMTP\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$AltBody on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$Body on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$CharSet on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$DKIM_domain on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$DKIM_identity on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$DKIM_passphrase on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$DKIM_private on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$DKIM_selector on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$Debugoutput on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$From on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$Host on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$Password on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$Port on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$Priority on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$SMTPAuth on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$SMTPDebug on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$SMTPSecure on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$Subject on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$Timeout on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$Username on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addAddress\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addBCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addCustomHeader\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addReplyTo\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addStringAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addStringEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method clearAddresses\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method clearAllRecipients\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method clearAttachments\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method clearBCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method clearCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method clearCustomHeaders\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method clearReplyTos\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method getLastMessageID\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method isHTML\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method isMail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method isQmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method isSMTP\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method isSendmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method send\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method setFrom\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method sign\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: throws.notThrowable
'message' => '#^PHPDoc tag @throws with type PHPMailer\\\\PHPMailer\\\\Exception is not subtype of Throwable$#',
'count' => 11,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\PHPMailer\\:\\:\\$mailer has unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer as its type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addBcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addCC\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addPart\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 4,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addReplyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method asInline\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method bcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method cc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method from\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method generateMessageId\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method getHeaders\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method html\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method priority\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method replyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method send\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method subject\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method text\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method to\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to static method fromDsn\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Transport\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Address not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Email not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart not found\\.$#',
'count' => 4,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\File not found\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:makeAddress\\(\\) has invalid return type Symfony\\\\Component\\\\Mime\\\\Address\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:transporter\\(\\) has invalid return type Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: property.onlyWritten
'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$encryption is never read, only written\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$mailer has unknown class Symfony\\\\Component\\\\Mime\\\\Email as its type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: property.onlyWritten
'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$timeout is never read, only written\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$transporter has unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer as its type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php',
];
$ignoreErrors[] = [
// identifier: new.static
'message' => '#^Unsafe usage of new static\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Middlewares/BaseMiddleware.php',
];
$ignoreErrors[] = [
// identifier: assign.propertyType
'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$request \\(BlitzPHP\\\\Http\\\\Request\\) does not accept Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Router/Dispatcher.php',
];
$ignoreErrors[] = [
// identifier: assign.propertyType
'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$response \\(BlitzPHP\\\\Http\\\\Response\\) does not accept Psr\\\\Http\\\\Message\\\\ResponseInterface\\.$#',
'count' => 4,
'path' => __DIR__ . '/src/Router/Dispatcher.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method directive\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method if\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method render\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Class Jenssegers\\\\Blade\\\\Blade not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class Jenssegers\\\\Blade\\\\Blade not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\BladeAdapter\\:\\:\\$engine has unknown class Jenssegers\\\\Blade\\\\Blade as its type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method renderToString\\(\\) on an unknown class Latte\\\\Engine\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method setAutoRefresh\\(\\) on an unknown class Latte\\\\Engine\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method setLoader\\(\\) on an unknown class Latte\\\\Engine\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method setTempDirectory\\(\\) on an unknown class Latte\\\\Engine\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Class Latte\\\\Engine not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class Latte\\\\Engine not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class Latte\\\\Loaders\\\\FileLoader not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\LatteAdapter\\:\\:\\$latte has unknown class Latte\\\\Engine as its type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addFolder\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method loadExtension\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method registerFunction\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method render\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Class League\\\\Plates\\\\Engine not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class League\\\\Plates\\\\Engine not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class League\\\\Plates\\\\Extension\\\\Asset not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\PlatesAdapter\\:\\:\\$engine has unknown class League\\\\Plates\\\\Engine as its type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to constant CACHING_LIFETIME_SAVED on an unknown class Smarty\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to constant CACHING_OFF on an unknown class Smarty\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addPluginsDir\\(\\) on an unknown class Smarty\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method assign\\(\\) on an unknown class Smarty\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method fetch\\(\\) on an unknown class Smarty\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method setCacheLifetime\\(\\) on an unknown class Smarty\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method setCaching\\(\\) on an unknown class Smarty\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method setCompileId\\(\\) on an unknown class Smarty\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method setTemplateDir\\(\\) on an unknown class Smarty\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Class Smarty not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Instantiated class Smarty not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\SmartyAdapter\\:\\:\\$engine has unknown class Smarty as its type\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addFilter\\(\\) on an unknown class Twig\\\\Environment\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addFunction\\(\\) on an unknown class Twig\\\\Environment\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method addGlobal\\(\\) on an unknown class Twig\\\\Environment\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method disableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method disableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method disableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method enableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method enableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method enableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method render\\(\\) on an unknown class Twig\\\\Environment\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method setCache\\(\\) on an unknown class Twig\\\\Environment\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method setCharset\\(\\) on an unknown class Twig\\\\Environment\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Class Twig\\\\Environment not found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php',
];
$ignoreErrors[] = [