forked from OPSnet/Gazelle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan-baseline.neon
1731 lines (1390 loc) · 63.8 KB
/
phpstan-baseline.neon
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
parameters:
ignoreErrors:
-
message: "#^Offset 'CategoryID' does not exist on array\\('DisplayArtists' \\=\\> string\\)\\.$#"
count: 1
path: app/API/Request.php
-
message: "#^PHPDoc tag @param has invalid value \\(bool Is the viewer staff\\?\\)\\: Unexpected token \"Is\", expected variable at offset 144$#"
count: 1
path: app/Applicant.php
-
message: "#^Method Gazelle\\\\Manager\\\\Artist\\:\\:findById\\(\\) invoked with 2 parameters, 1 required\\.$#"
count: 1
path: app/Artist.php
-
message: "#^PHPDoc tag @throws with type Gazelle\\\\Gazelle\\\\Exception\\\\ResourceNotFoundException is not subtype of Throwable$#"
count: 1
path: app/Artist.php
-
message: "#^PHPDoc tag @throws with type Gazelle\\\\Gazelle\\\\Exception\\\\ResourceNotFoundException\\|Gazelle\\\\UnexpectedValueException is not subtype of Throwable$#"
count: 1
path: app/Artist.php
-
message: "#^Method Gazelle\\\\Bonus\\:\\:removePointsForUpload\\(\\) should return int but returns bool\\.$#"
count: 1
path: app/Bonus.php
-
message: "#^PHPDoc tag @param has invalid value \\(string \\(on of artist, collage, request, torrent\\)\\)\\: Unexpected token \"\\(\", expected variable at offset 113$#"
count: 1
path: app/Bookmark.php
-
message: "#^PHPDoc tag @param has invalid value \\(string \\(on of artist, collage, request, torrent\\)\\)\\: Unexpected token \"\\(\", expected variable at offset 125$#"
count: 1
path: app/Bookmark.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$UserID$#"
count: 1
path: app/Bookmark.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$userID$#"
count: 3
path: app/Bookmark.php
-
message: "#^PHPDoc tag @return has invalid value \\(\\[table, column\\]\\)\\: Unexpected token \"\\[\", expected type at offset 199$#"
count: 1
path: app/Bookmark.php
-
message: "#^Access to an undefined property Gazelle\\\\User\\:\\:\\$name\\.$#"
count: 1
path: app/Collage.php
-
message: "#^PHPDoc tag @param has invalid value \\(ascending int True to sort ASC, False to sort DESC\\)\\: Unexpected token \"int\", expected variable at offset 305$#"
count: 1
path: app/Collage.php
-
message: "#^PHPDoc tag @param has invalid value \\(int User id\\)\\: Unexpected token \"User\", expected variable at offset 146$#"
count: 1
path: app/Collage.php
-
message: "#^PHPDoc tag @param has invalid value \\(int limit Number of entries to return \\(default 5, \\-1 for all\\)\\)\\: Unexpected token \"limit\", expected variable at offset 50$#"
count: 1
path: app/Collage.php
-
message: "#^PHPDoc tag @param has invalid value \\(int limit Number of entries to return \\(default 5, \\-1 for all\\)\\)\\: Unexpected token \"limit\", expected variable at offset 53$#"
count: 1
path: app/Collage.php
-
message: "#^PHPDoc tag @return with type Gazelle\\\\an is incompatible with native type array\\.$#"
count: 1
path: app/Collage.php
-
message: "#^PHPDoc tag @return with type int is incompatible with native type bool\\.$#"
count: 1
path: app/Collage.php
-
message: "#^Return typehint of method Gazelle\\\\Collage\\:\\:torrentList\\(\\) has invalid type Gazelle\\\\an\\.$#"
count: 1
path: app/Collage.php
-
message: "#^PHPDoc tag @param has invalid value \\(array containing keys Artist, Name and Year\\)\\: Unexpected token \"containing\", expected variable at offset 109$#"
count: 1
path: app/Collector.php
-
message: "#^PHPDoc tag @param has invalid value \\(array containing keys Artist, Name and Year\\)\\: Unexpected token \"containing\", expected variable at offset 131$#"
count: 1
path: app/Collector.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$FilterStats$#"
count: 2
path: app/Collector.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$data$#"
count: 1
path: app/Collector.php
-
message: "#^PHPDoc tag @param has invalid value \\(array \\[total comments, page, comment list, last read\\]\\)\\: Unexpected token \"\\[\", expected variable at offset 59$#"
count: 1
path: app/CommentViewer.php
-
message: "#^PHPDoc tag @param has invalid value \\(int PostID of the last read post\\)\\: Unexpected token \"PostID\", expected variable at offset 125$#"
count: 1
path: app/CommentViewer.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$Tools$#"
count: 1
path: app/CommentViewer.php
-
message: "#^Call to an undefined method Gazelle\\\\Contest\\\\AbstractContest\\:\\:leaderboard\\(\\)\\.$#"
count: 2
path: app/Contest.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\$relax true if foreign key checks should be skipped\\)\\: Unexpected token \"\\$relax\", expected type at offset 49$#"
count: 1
path: app/DB.php
-
message: "#^PHPDoc tag @param has invalid value \\(array List of group IDs\\)\\: Unexpected token \"List\", expected variable at offset 84$#"
count: 1
path: app/Editor/UserBookmark.php
-
message: "#^PHPDoc tag @param has invalid value \\(array List of group IDs\\)\\: Unexpected token \"List\", expected variable at offset 92$#"
count: 1
path: app/Editor/UserBookmark.php
-
message: "#^PHPDoc tag @param has invalid value \\(array id rip log identifier \\[torrentId, logId\\]\\)\\: Unexpected token \"id\", expected variable at offset 57$#"
count: 1
path: app/File/RipLog.php
-
message: "#^PHPDoc tag @param has invalid value \\(boolean True \\(TODO\\: record individual unlink successes in the case of a wildcard\\)\\: Unexpected token \"True\", expected variable at offset 240$#"
count: 1
path: app/File/RipLog.php
-
message: "#^Method Gazelle\\\\File\\\\RipLogHTML\\:\\:path\\(\\) should return Gazelle\\\\File\\\\Fully but returns string\\.$#"
count: 1
path: app/File/RipLogHTML.php
-
message: "#^PHPDoc tag @param has invalid value \\(array id rip log identifier \\[torrentId, logId\\]\\)\\: Unexpected token \"id\", expected variable at offset 67$#"
count: 1
path: app/File/RipLogHTML.php
-
message: "#^PHPDoc tag @param has invalid value \\(boolean True \\(TODO\\: record individual unlink successes in the case of a wildcard\\)\\: Unexpected token \"True\", expected variable at offset 250$#"
count: 1
path: app/File/RipLogHTML.php
-
message: "#^Return type \\(Gazelle\\\\File\\\\Fully\\) of method Gazelle\\\\File\\\\RipLogHTML\\:\\:path\\(\\) should be compatible with return type \\(string\\) of method Gazelle\\\\File\\:\\:path\\(\\)$#"
count: 1
path: app/File/RipLogHTML.php
-
message: "#^Return typehint of method Gazelle\\\\File\\\\RipLogHTML\\:\\:path\\(\\) has invalid type Gazelle\\\\File\\\\Fully\\.$#"
count: 1
path: app/File/RipLogHTML.php
-
message: "#^Method Gazelle\\\\File\\\\Torrent\\:\\:path\\(\\) should return Gazelle\\\\File\\\\Fully but returns string\\.$#"
count: 1
path: app/File/Torrent.php
-
message: "#^PHPDoc tag @param has invalid value \\(int id of torrent\\)\\: Unexpected token \"id\", expected variable at offset 59$#"
count: 1
path: app/File/Torrent.php
-
message: "#^Return type \\(Gazelle\\\\File\\\\Fully\\) of method Gazelle\\\\File\\\\Torrent\\:\\:path\\(\\) should be compatible with return type \\(string\\) of method Gazelle\\\\File\\:\\:path\\(\\)$#"
count: 1
path: app/File/Torrent.php
-
message: "#^Return typehint of method Gazelle\\\\File\\\\Torrent\\:\\:path\\(\\) has invalid type Gazelle\\\\File\\\\Fully\\.$#"
count: 1
path: app/File/Torrent.php
-
message: "#^PHPDoc tag @param has invalid value \\(array answer An array of answers \\(between 2 and 25\\)\\)\\: Unexpected token \"answer\", expected variable at offset 180$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(array answers The answers\\)\\: Unexpected token \"answers\", expected variable at offset 104$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(array hash of values \\(keyed on lowercase column names\\)\\)\\: Unexpected token \"hash\", expected variable at offset 46$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(array vots An array of votes \\(1 per answer\\)\\)\\: Unexpected token \"vots\", expected variable at offset 246$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(bool set Sticky if true, otherwise unsticky\\)\\: Unexpected token \"set\", expected variable at offset 207$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int The last read post id \\(or 0 if thread has never been read before\\)\\)\\: Unexpected token \"The\", expected variable at offset 193$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int forumId The ID of the forum\\)\\: Unexpected token \"forumId\", expected variable at offset 380$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int forumId Where is it being moved to\\?\\)\\: Unexpected token \"forumId\", expected variable at offset 112$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int how many posts per page\\)\\: Unexpected token \"how\", expected variable at offset 96$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int id The forum ID\\.\\)\\: Unexpected token \"id\", expected variable at offset 61$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int id The post ID\\.\\)\\: Unexpected token \"id\", expected variable at offset 70$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int id The thread ID\\.\\)\\: Unexpected token \"id\", expected variable at offset 88$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int item The answer to remove \\(1\\-based\\)\\)\\: Unexpected token \"item\", expected variable at offset 104$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int locked Is the thread locked\\?\\)\\: Unexpected token \"locked\", expected variable at offset 344$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int perPage The number of topics per page\\)\\: Unexpected token \"perPage\", expected variable at offset 143$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int postID the ID of the post to remove\\)\\: Unexpected token \"postID\", expected variable at offset 64$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int postId The ID of the last post the user has read\\)\\: Unexpected token \"postId\", expected variable at offset 195$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int postId The ID of the post\\)\\: Unexpected token \"postId\", expected variable at offset 162$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int postId The post ID\\)\\: Unexpected token \"postId\", expected variable at offset 132$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int postId The post in the thread\\)\\: Unexpected token \"postId\", expected variable at offset 207$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int postId The post\\)\\: Unexpected token \"postId\", expected variable at offset 102$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int postId The post\\)\\: Unexpected token \"postId\", expected variable at offset 118$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int postId The post\\)\\: Unexpected token \"postId\", expected variable at offset 141$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int rank Where in the list of sticky threads does it appear\\? \\(Larger numbers are higher\\)\\)\\: Unexpected token \"rank\", expected variable at offset 241$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int sticky Is the thread stuck at the top of the first page\\?\\)\\: Unexpected token \"sticky\", expected variable at offset 166$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int stickyPostId If a sticky post, the count will be less one\\)\\: Unexpected token \"stickyPostId\", expected variable at offset 169$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int the thread where the poll is defined\\)\\: Unexpected token \"the\", expected variable at offset 99$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int the user id\\)\\: Unexpected token \"the\", expected variable at offset 69$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int thread id\\)\\: Unexpected token \"thread\", expected variable at offset 68$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int thread id\\)\\: Unexpected token \"thread\", expected variable at offset 92$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId In which thread\\?\\)\\: Unexpected token \"threadId\", expected variable at offset 91$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The ID of the thread\\)\\: Unexpected token \"threadId\", expected variable at offset 114$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The ID of the thread\\)\\: Unexpected token \"threadId\", expected variable at offset 147$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread ID\\)\\: Unexpected token \"threadId\", expected variable at offset 91$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread ID\\.\\)\\: Unexpected token \"threadId\", expected variable at offset 151$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread to edit\\)\\: Unexpected token \"threadId\", expected variable at offset 66$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread to lock\\)\\: Unexpected token \"threadId\", expected variable at offset 85$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread to remove\\)\\: Unexpected token \"threadId\", expected variable at offset 160$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread\\)\\: Unexpected token \"threadId\", expected variable at offset 108$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread\\)\\: Unexpected token \"threadId\", expected variable at offset 112$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread\\)\\: Unexpected token \"threadId\", expected variable at offset 137$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread\\)\\: Unexpected token \"threadId\", expected variable at offset 169$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread\\)\\: Unexpected token \"threadId\", expected variable at offset 59$#"
count: 2
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread\\)\\: Unexpected token \"threadId\", expected variable at offset 64$#"
count: 2
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread\\)\\: Unexpected token \"threadId\", expected variable at offset 66$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread\\)\\: Unexpected token \"threadId\", expected variable at offset 92$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId The thread\\)\\: Unexpected token \"threadId\", expected variable at offset 96$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId Where are they voting\\?\\)\\: Unexpected token \"threadId\", expected variable at offset 91$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int threadId the thread\\)\\: Unexpected token \"threadId\", expected variable at offset 62$#"
count: 1
path: app/Forum.php
-
message:
"""
#^PHPDoc tag @param has invalid value \\(int toClose toggle open/closed for voting
\\(\\)\\: Unexpected token "toClose", expected variable at offset 197$#
"""
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int toFeature non\\-zero to feature on front page\\)\\: Unexpected token \"toFeature\", expected variable at offset 135$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int userID The author\\)\\: Unexpected token \"userID\", expected variable at offset 62$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int userID The author\\)\\: Unexpected token \"userID\", expected variable at offset 72$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int userID The editor making the change\\)\\: Unexpected token \"userID\", expected variable at offset 48$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int userID The editor making the change\\)\\: Unexpected token \"userID\", expected variable at offset 83$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int userID The stickier\\)\\: Unexpected token \"userID\", expected variable at offset 76$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int userId The moderator\\)\\: Unexpected token \"userId\", expected variable at offset 97$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int userId The ID of the user catching up\\)\\: Unexpected token \"userId\", expected variable at offset 90$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int userId The ID of the user catching up\\)\\: Unexpected token \"userId\", expected variable at offset 91$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int userId The author\\)\\: Unexpected token \"userId\", expected variable at offset 133$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int userId The user ID\\.\\)\\: Unexpected token \"userId\", expected variable at offset 113$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int userId The user id reading the forum\\)\\: Unexpected token \"userId\", expected variable at offset 88$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int userId Who is voting\\?\\)\\: Unexpected token \"userId\", expected variable at offset 51$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int vote What are they voting for\\?\\)\\: Unexpected token \"vote\", expected variable at offset 141$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int which page are we on\\)\\: Unexpected token \"which\", expected variable at offset 138$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(string answer The new answer\\)\\: Unexpected token \"answer\", expected variable at offset 105$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(string body The body of the first post in thread\\)\\: Unexpected token \"body\", expected variable at offset 152$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(string body The body of the post\\)\\: Unexpected token \"body\", expected variable at offset 149$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(string body The new contents\\)\\: Unexpected token \"body\", expected variable at offset 139$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(string body The new contents\\)\\: Unexpected token \"body\", expected variable at offset 178$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(string notes The multi\\-line text\\)\\: Unexpected token \"notes\", expected variable at offset 141$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(string question The poll question\\)\\: Unexpected token \"question\", expected variable at offset 133$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(string title The new title of the thread\\)\\: Unexpected token \"title\", expected variable at offset 394$#"
count: 1
path: app/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(string title The title of the thread\\)\\: Unexpected token \"title\", expected variable at offset 101$#"
count: 1
path: app/Forum.php
-
message: "#^Method Gazelle\\\\InviteTree\\:\\:details\\(\\) should return array but returns string\\.$#"
count: 1
path: app/InviteTree.php
-
message: "#^PHPDoc tag @param has invalid value \\(int version\\)\\: Unexpected token \"version\", expected variable at offset 198$#"
count: 1
path: app/Json.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\\\Gazelle\\\\Search\\\\Forum\\)\\: Unexpected token \"\\\\n \", expected variable at offset 83$#"
count: 1
path: app/Json/PostHistory.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\\\Gazelle\\\\Util\\\\Paginator\\)\\: Unexpected token \"\\\\n \", expected variable at offset 74$#"
count: 1
path: app/Json/PostHistory.php
-
message: "#^PHPDoc tag @return with type Gazelle\\\\a is not subtype of native type Gazelle\\\\User\\|null\\.$#"
count: 1
path: app/Login.php
-
message: "#^PHPDoc tag @return with type true is incompatible with native type Gazelle\\\\User\\|null\\.$#"
count: 1
path: app/Login.php
-
message: "#^Return typehint of method Gazelle\\\\Login\\:\\:attemptLogin\\(\\) has invalid type Gazelle\\\\a\\.$#"
count: 1
path: app/Login.php
-
message: "#^PHPDoc tag @param has invalid value \\(array list of IDs to ban\\.\\)\\: Unexpected token \"list\", expected variable at offset 165$#"
count: 1
path: app/LoginWatch.php
-
message: "#^PHPDoc tag @param has invalid value \\(array list of IDs to clear\\.\\)\\: Unexpected token \"list\", expected variable at offset 78$#"
count: 1
path: app/LoginWatch.php
-
message: "#^PHPDoc tag @param has invalid value \\(int User doing the banning\\)\\: Unexpected token \"User\", expected variable at offset 97$#"
count: 1
path: app/LoginWatch.php
-
message: "#^PHPDoc tag @param has invalid value \\(string why\\)\\: Unexpected token \"why\", expected variable at offset 141$#"
count: 1
path: app/LoginWatch.php
-
message: "#^PHPDoc tag @return with type float\\|int is not subtype of native type int\\.$#"
count: 2
path: app/LoginWatch.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\$page int The page number to fetch \\(50 entries\\) defaults to 1\\)\\: Unexpected token \"\\$page\", expected type at offset 928$#"
count: 1
path: app/Manager/Applicant.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\$resolved int Should resolved applications be included \\(defaults to no\\)\\.\\)\\: Unexpected token \"\\$resolved\", expected type at offset 1004$#"
count: 1
path: app/Manager/Applicant.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\$userId int If non\\-zero, return applications of this userId\\)\\: Unexpected token \"\\$userId\", expected type at offset 1091$#"
count: 1
path: app/Manager/Applicant.php
-
message: "#^PHPDoc tag @return with type Gazelle\\\\Manager\\\\a is incompatible with native type array\\.$#"
count: 1
path: app/Manager/Applicant.php
-
message: "#^Return typehint of method Gazelle\\\\Manager\\\\Applicant\\:\\:list\\(\\) has invalid type Gazelle\\\\Manager\\\\a\\.$#"
count: 1
path: app/Manager/Applicant.php
-
message:
"""
#^PHPDoc tag @param has invalid value \\(array
\\- id The id of the news article
\\- title The title of the article
\\- body The body of the article
\\- threadId The associated threadId
\\- important The level of importance\\)\\: Unexpected token "\\\\n \\* ", expected variable at offset 69$#
"""
count: 1
path: app/Manager/Blog.php
-
message:
"""
#^PHPDoc tag @param has invalid value \\(array
\\- userId The UserID of the author
\\- title The title of the article
\\- body The body of the article
\\- threadId The associated threadId
\\- important The level of importance\\)\\: Unexpected token "\\\\n \\* ", expected variable at offset 52$#
"""
count: 1
path: app/Manager/Blog.php
-
message: "#^PHPDoc tag @param has invalid value \\(int ID of the blog article\\)\\: Unexpected token \"ID\", expected variable at offset 61$#"
count: 1
path: app/Manager/Blog.php
-
message: "#^PHPDoc tag @param has invalid value \\(int ID of the blog article\\)\\: Unexpected token \"ID\", expected variable at offset 87$#"
count: 1
path: app/Manager/Blog.php
-
message: "#^PHPDoc tag @return with type Gazelle\\\\Manager\\\\ID is not subtype of native type Gazelle\\\\Blog\\.$#"
count: 1
path: app/Manager/Blog.php
-
message: "#^Return typehint of method Gazelle\\\\Manager\\\\Blog\\:\\:create\\(\\) has invalid type Gazelle\\\\Manager\\\\ID\\.$#"
count: 1
path: app/Manager/Blog.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$clientID$#"
count: 1
path: app/Manager/ClientWhitelist.php
-
message: "#^PHPDoc tag @param has invalid value \\(string name of the user\\)\\: Unexpected token \"name\", expected variable at offset 186$#"
count: 1
path: app/Manager/Collage.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\\\Gazelle\\\\User the viewer\\)\\: Unexpected token \"the\", expected variable at offset 121$#"
count: 1
path: app/Manager/Comment.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\\\Gazelle\\\\User the viewer\\)\\: Unexpected token \"the\", expected variable at offset 149$#"
count: 1
path: app/Manager/Comment.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$Body$#"
count: 1
path: app/Manager/Comment.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$CollageID$#"
count: 1
path: app/Manager/Comment.php
-
message: "#^Class Gazelle\\\\Manager\\\\Thread referenced with incorrect case\\: Gazelle\\\\Manager\\\\thread\\.$#"
count: 1
path: app/Manager/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(Gazelle\\\\User viewer\\)\\: Unexpected token \"viewer\", expected variable at offset 462$#"
count: 1
path: app/Manager/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(array hash of values \\(keyed on lowercase column names\\)\\)\\: Unexpected token \"hash\", expected variable at offset 46$#"
count: 1
path: app/Manager/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int id The post ID\\.\\)\\: Unexpected token \"id\", expected variable at offset 72$#"
count: 1
path: app/Manager/Forum.php
-
message: "#^PHPDoc tag @param has invalid value \\(int id The thread ID\\.\\)\\: Unexpected token \"id\", expected variable at offset 74$#"
count: 1
path: app/Manager/Forum.php
-
message: "#^PHPDoc tag @return with type Gazelle\\\\Manager\\\\Thread is incompatible with native type int\\|null\\.$#"
count: 1
path: app/Manager/Forum.php
-
message: "#^Binary operation \"\\+\" between string and 1 results in an error\\.$#"
count: 1
path: app/Manager/IPv4.php
-
message: "#^PHPDoc tag @param has invalid value \\(int userId The person doing the band \\(0 for system\\)\\)\\: Unexpected token \"userId\", expected variable at offset 144$#"
count: 1
path: app/Manager/IPv4.php
-
message: "#^PHPDoc tag @param has invalid value \\(string from The first address \\(dotted quad a\\.b\\.c\\.d\\)\\)\\: Unexpected token \"from\", expected variable at offset 213$#"
count: 1
path: app/Manager/IPv4.php
-
message: "#^PHPDoc tag @param has invalid value \\(string reason Why ban\\?\\)\\: Unexpected token \"reason\", expected variable at offset 352$#"
count: 1
path: app/Manager/IPv4.php
-
message: "#^PHPDoc tag @param has invalid value \\(string to The last adddress in the range \\(may equal \\$from\\)\\)\\: Unexpected token \"to\", expected variable at offset 279$#"
count: 1
path: app/Manager/IPv4.php
-
message: "#^PHPDoc tag @return with type Gazelle\\\\Manager\\\\record is incompatible with native type int\\.$#"
count: 1
path: app/Manager/IPv4.php
-
message: "#^Return typehint of method Gazelle\\\\Manager\\\\IPv4\\:\\:createBan\\(\\) has invalid type Gazelle\\\\Manager\\\\record\\.$#"
count: 1
path: app/Manager/IPv4.php
-
message: "#^PHPDoc tag @param has invalid value \\(int limit\\)\\: Unexpected token \"limit\", expected variable at offset 66$#"
count: 1
path: app/Manager/Invite.php
-
message: "#^PHPDoc tag @param has invalid value \\(int offset\\)\\: Unexpected token \"offset\", expected variable at offset 90$#"
count: 1
path: app/Manager/Invite.php
-
message: "#^PHPDoc tag @param has invalid value \\(string email address fragment\\)\\: Unexpected token \"email\", expected variable at offset 76$#"
count: 1
path: app/Manager/Invite.php
-
message: "#^PHPDoc tag @param has invalid value \\(string invite key\\)\\: Unexpected token \"invite\", expected variable at offset 56$#"
count: 1
path: app/Manager/Invite.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\$body The body of the article\\)\\: Unexpected token \"\\$body\", expected type at offset 150$#"
count: 1
path: app/Manager/News.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\$body The body of the article\\)\\: Unexpected token \"\\$body\", expected type at offset 181$#"
count: 1
path: app/Manager/News.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\$id The article ID\\)\\: Unexpected token \"\\$id\", expected type at offset 95$#"
count: 1
path: app/Manager/News.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\$id ID of article\\)\\: Unexpected token \"\\$id\", expected type at offset 69$#"
count: 1
path: app/Manager/News.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\$id The id of the news article\\)\\: Unexpected token \"\\$id\", expected type at offset 64$#"
count: 1
path: app/Manager/News.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\$title The title of the article\\)\\: Unexpected token \"\\$title\", expected type at offset 102$#"
count: 1
path: app/Manager/News.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\$title The title of the article\\)\\: Unexpected token \"\\$title\", expected type at offset 133$#"
count: 1
path: app/Manager/News.php
-
message: "#^PHPDoc tag @param has invalid value \\(\\$userId The UserID of the author\\)\\: Unexpected token \"\\$userId\", expected type at offset 54$#"
count: 1
path: app/Manager/News.php
-
message: "#^PHPDoc tag @return with type Gazelle\\\\Manager\\\\ID is incompatible with native type int\\.$#"
count: 1
path: app/Manager/News.php
-
message: "#^Return typehint of method Gazelle\\\\Manager\\\\News\\:\\:create\\(\\) has invalid type Gazelle\\\\Manager\\\\ID\\.$#"
count: 1
path: app/Manager/News.php
-
message: "#^PHPDoc tag @param has invalid value \\(int Group ID\\)\\: Unexpected token \"Group\", expected variable at offset 79$#"
count: 1
path: app/Manager/ReportV2.php
-
message: "#^PHPDoc tag @param has invalid value \\(int User ID of uploader\\)\\: Unexpected token \"User\", expected variable at offset 82$#"
count: 1
path: app/Manager/ReportV2.php
-
message: "#^PHPDoc tag @return with type float\\|int is not subtype of native type int\\.$#"
count: 2
path: app/Manager/ReportV2.php
-
message: "#^PHPDoc tag @param has invalid value \\(int ID of option\\)\\: Unexpected token \"ID\", expected variable at offset 94$#"
count: 1
path: app/Manager/SiteOption.php
-
message: "#^PHPDoc tag @param has invalid value \\(string Mandatory comment\\)\\: Unexpected token \"Mandatory\", expected variable at offset 148$#"
count: 1
path: app/Manager/SiteOption.php
-
message: "#^PHPDoc tag @param has invalid value \\(string Mandatory comment\\)\\: Unexpected token \"Mandatory\", expected variable at offset 201$#"
count: 1
path: app/Manager/SiteOption.php
-
message: "#^PHPDoc tag @param has invalid value \\(string Name of option\\)\\: Unexpected token \"Name\", expected variable at offset 128$#"
count: 1
path: app/Manager/SiteOption.php
-
message: "#^PHPDoc tag @param has invalid value \\(string Name of option\\)\\: Unexpected token \"Name\", expected variable at offset 64$#"
count: 1
path: app/Manager/SiteOption.php
-
message: "#^PHPDoc tag @param has invalid value \\(string Name of option\\)\\: Unexpected token \"Name\", expected variable at offset 75$#"
count: 1
path: app/Manager/SiteOption.php
-
message: "#^PHPDoc tag @param has invalid value \\(string Value of option\\)\\: Unexpected token \"Value\", expected variable at offset 111$#"
count: 1
path: app/Manager/SiteOption.php
-
message: "#^PHPDoc tag @param has invalid value \\(string Value of option\\)\\: Unexpected token \"Value\", expected variable at offset 164$#"
count: 1
path: app/Manager/SiteOption.php
-
message: "#^PHPDoc tag @param has invalid value \\(int ID of the vistort\\)\\: Unexpected token \"ID\", expected variable at offset 70$#"
count: 1
path: app/Manager/StaffBlog.php
-
message: "#^PHPDoc tag @param has invalid value \\(int blog id\\)\\: Unexpected token \"blog\", expected variable at offset 148$#"
count: 1
path: app/Manager/StaffBlog.php
-
message: "#^PHPDoc tag @param has invalid value \\(int user id\\)\\: Unexpected token \"user\", expected variable at offset 107$#"
count: 1
path: app/Manager/StaffBlog.php
-
message: "#^PHPDoc tag @param has invalid value \\(int user id\\)\\: Unexpected token \"user\", expected variable at offset 70$#"
count: 1
path: app/Manager/StaffBlog.php
-
message: "#^PHPDoc tag @param has invalid value \\(string body of the blog post\\)\\: Unexpected token \"body\", expected variable at offset 67$#"
count: 1
path: app/Manager/StaffBlog.php
-
message: "#^PHPDoc tag @param has invalid value \\(string title of the blog post\\)\\: Unexpected token \"title\", expected variable at offset 68$#"
count: 1
path: app/Manager/StaffBlog.php
-
message: "#^Property Gazelle\\\\Manager\\\\StaffBlog\\:\\:\\$blogId \\(int\\) does not accept null\\.$#"
count: 1
path: app/Manager/StaffBlog.php
-
message: "#^Property Gazelle\\\\Manager\\\\StaffBlog\\:\\:\\$body \\(string\\) does not accept null\\.$#"
count: 1
path: app/Manager/StaffBlog.php
-
message: "#^Property Gazelle\\\\Manager\\\\StaffBlog\\:\\:\\$title \\(string\\) does not accept null\\.$#"
count: 1
path: app/Manager/StaffBlog.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$Page$#"
count: 1
path: app/Manager/Subscription.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$PageID$#"
count: 1
path: app/Manager/Subscription.php
-
message: "#^Parameter \\$PageID of method Gazelle\\\\Manager\\\\Subscription\\:\\:flush\\(\\) has invalid typehint type Gazelle\\\\Manager\\\\type\\.$#"
count: 1
path: app/Manager/Subscription.php
-
message: "#^Method Gazelle\\\\Manager\\\\TGroup\\:\\:findByTorrentInfohash\\(\\) should return int but returns Gazelle\\\\TGroup\\|null\\.$#"
count: 1
path: app/Manager/TGroup.php
-
message: "#^PHPDoc tag @param has invalid value \\(int groupId\\)\\: Unexpected token \"groupId\", expected variable at offset 107$#"
count: 1