forked from glpi-project/glpi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.phpstan-baseline.php
4535 lines (4533 loc) · 179 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: booleanOr.alwaysFalse
'message' => '#^Result of \\|\\| is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/front/commonitilobject_item.form.php',
];
$ignoreErrors[] = [
// identifier: booleanOr.alwaysFalse
'message' => '#^Result of \\|\\| is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/front/dropdown.common.form.php',
];
$ignoreErrors[] = [
// identifier: booleanOr.alwaysFalse
'message' => '#^Result of \\|\\| is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/front/dropdown.common.php',
];
$ignoreErrors[] = [
// identifier: finally.exitPoint
'message' => '#^The overwriting exit point is on this line\\.$#',
'count' => 1,
'path' => __DIR__ . '/front/form/access_control.form.php',
];
$ignoreErrors[] = [
// identifier: finally.exitPoint
'message' => '#^This throw is overwritten by a different one in the finally block below\\.$#',
'count' => 2,
'path' => __DIR__ . '/front/form/access_control.form.php',
];
$ignoreErrors[] = [
// identifier: finally.exitPoint
'message' => '#^The overwriting exit point is on this line\\.$#',
'count' => 1,
'path' => __DIR__ . '/front/form/destination/formdestination.form.php',
];
$ignoreErrors[] = [
// identifier: finally.exitPoint
'message' => '#^This throw is overwritten by a different one in the finally block below\\.$#',
'count' => 6,
'path' => __DIR__ . '/front/form/destination/formdestination.form.php',
];
$ignoreErrors[] = [
// identifier: property.notFound
'message' => '#^Access to an undefined property Glpi\\\\Inventory\\\\Conf\\:\\:\\$enabled_inventory\\.$#',
'count' => 1,
'path' => __DIR__ . '/front/inventory.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method Glpi\\\\Mail\\\\SMTP\\\\OauthProvider\\\\ProviderInterface\\:\\:getState\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/front/notificationmailingsetting.form.php',
];
$ignoreErrors[] = [
// identifier: match.unhandled
'message' => '#^Match expression does not handle remaining value\\: mixed$#',
'count' => 1,
'path' => __DIR__ . '/front/stat.graph.php',
];
$ignoreErrors[] = [
// identifier: if.alwaysFalse
'message' => '#^If condition is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/empty_data.php',
];
$ignoreErrors[] = [
// identifier: identical.alwaysFalse
'message' => '#^Strict comparison using \\=\\=\\= between null and \'testing\' will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/empty_data.php',
];
$ignoreErrors[] = [
// identifier: ternary.alwaysFalse
'message' => '#^Ternary operator condition is always false\\.$#',
'count' => 2,
'path' => __DIR__ . '/install/empty_data.php',
];
$ignoreErrors[] = [
// identifier: foreach.emptyArray
'message' => '#^Empty array passed to foreach\\.$#',
'count' => 2,
'path' => __DIR__ . '/install/migrations/update_0.85.x_to_0.90.0.php',
];
$ignoreErrors[] = [
// identifier: if.alwaysFalse
'message' => '#^If condition is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_0.85.x_to_0.90.0.php',
];
$ignoreErrors[] = [
// identifier: foreach.emptyArray
'message' => '#^Empty array passed to foreach\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_0.90.0_to_0.90.1.php',
];
$ignoreErrors[] = [
// identifier: if.alwaysFalse
'message' => '#^If condition is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_0.90.0_to_0.90.1.php',
];
$ignoreErrors[] = [
// identifier: foreach.emptyArray
'message' => '#^Empty array passed to foreach\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_0.90.1_to_0.90.5.php',
];
$ignoreErrors[] = [
// identifier: if.alwaysFalse
'message' => '#^If condition is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_0.90.1_to_0.90.5.php',
];
$ignoreErrors[] = [
// identifier: foreach.emptyArray
'message' => '#^Empty array passed to foreach\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_0.90.x_to_9.1.0.php',
];
$ignoreErrors[] = [
// identifier: if.alwaysFalse
'message' => '#^If condition is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_0.90.x_to_9.1.0.php',
];
$ignoreErrors[] = [
// identifier: foreach.emptyArray
'message' => '#^Empty array passed to foreach\\.$#',
'count' => 2,
'path' => __DIR__ . '/install/migrations/update_10.0.0_to_10.0.1.php',
];
$ignoreErrors[] = [
// identifier: foreach.emptyArray
'message' => '#^Empty array passed to foreach\\.$#',
'count' => 2,
'path' => __DIR__ . '/install/migrations/update_10.0.1_to_10.0.2.php',
];
$ignoreErrors[] = [
// identifier: foreach.emptyArray
'message' => '#^Empty array passed to foreach\\.$#',
'count' => 2,
'path' => __DIR__ . '/install/migrations/update_10.0.2_to_10.0.3.php',
];
$ignoreErrors[] = [
// identifier: foreach.emptyArray
'message' => '#^Empty array passed to foreach\\.$#',
'count' => 2,
'path' => __DIR__ . '/install/migrations/update_10.0.3_to_10.0.4.php',
];
$ignoreErrors[] = [
// identifier: foreach.emptyArray
'message' => '#^Empty array passed to foreach\\.$#',
'count' => 2,
'path' => __DIR__ . '/install/migrations/update_10.0.4_to_10.0.5.php',
];
$ignoreErrors[] = [
// identifier: foreach.emptyArray
'message' => '#^Empty array passed to foreach\\.$#',
'count' => 3,
'path' => __DIR__ . '/install/migrations/update_10.0.x_to_11.0.0.php',
];
$ignoreErrors[] = [
// identifier: if.alwaysTrue
'message' => '#^If condition is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_10.0.x_to_11.0.0/form.php',
];
$ignoreErrors[] = [
// identifier: foreach.emptyArray
'message' => '#^Empty array passed to foreach\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_9.1.0_to_9.1.1.php',
];
$ignoreErrors[] = [
// identifier: if.alwaysFalse
'message' => '#^If condition is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_9.1.0_to_9.1.1.php',
];
$ignoreErrors[] = [
// identifier: foreach.emptyArray
'message' => '#^Empty array passed to foreach\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_9.1.1_to_9.1.3.php',
];
$ignoreErrors[] = [
// identifier: if.alwaysFalse
'message' => '#^If condition is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_9.1.1_to_9.1.3.php',
];
$ignoreErrors[] = [
// identifier: arguments.count
'message' => '#^Method Migration\\:\\:addPostQuery\\(\\) invoked with 4 parameters, 1\\-2 required\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_9.1.x_to_9.2.0.php',
];
$ignoreErrors[] = [
// identifier: booleanAnd.rightAlwaysTrue
'message' => '#^Right side of && is always true\\.$#',
'count' => 4,
'path' => __DIR__ . '/install/migrations/update_9.1.x_to_9.2.0.php',
];
$ignoreErrors[] = [
// identifier: isset.offset
'message' => '#^Offset 1 on array\\{array\\<int, string\\>, array\\<int, numeric\\-string\\>\\} in isset\\(\\) always exists and is not nullable\\.$#',
'count' => 1,
'path' => __DIR__ . '/install/migrations/update_9.5.1_to_9.5.2.php',
];
$ignoreErrors[] = [
// identifier: foreach.emptyArray
'message' => '#^Empty array passed to foreach\\.$#',
'count' => 2,
'path' => __DIR__ . '/install/migrations/update_9.5.x_to_10.0.0.php',
];
$ignoreErrors[] = [
// identifier: return.void
'message' => '#^Method APIClient\\:\\:showForm\\(\\) with return type void returns true but should not return anything\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/APIClient.php',
];
$ignoreErrors[] = [
// identifier: booleanNot.alwaysTrue
'message' => '#^Negated boolean expression is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/APIClient.php',
];
$ignoreErrors[] = [
// identifier: method.childReturnType
'message' => '#^Return type \\(void\\) of method APIClient\\:\\:showForm\\(\\) should be compatible with return type \\(bool\\) of method CommonDBTM\\:\\:showForm\\(\\)$#',
'count' => 1,
'path' => __DIR__ . '/src/APIClient.php',
];
$ignoreErrors[] = [
// identifier: return.type
'message' => '#^Method Agent\\:\\:requestAgent\\(\\) should return GuzzleHttp\\\\Psr7\\\\Response but returns Psr\\\\Http\\\\Message\\\\ResponseInterface\\|null\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Agent.php',
];
$ignoreErrors[] = [
// identifier: nullCoalesce.offset
'message' => '#^Offset \'action_callback\' on array\\{label\\: string, item_action\\: bool, render_callback\\: callable\\(\\)\\: mixed, action_callback\\: callable\\(\\)\\: mixed\\} on left side of \\?\\? always exists and is not nullable\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Agent.php',
];
$ignoreErrors[] = [
// identifier: function.impossibleType
'message' => '#^Call to function is_array\\(\\) with string will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Ajax.php',
];
$ignoreErrors[] = [
// identifier: greater.alwaysTrue
'message' => '#^Comparison operation "\\>" between int\\<1, max\\> and 0 is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Ajax.php',
];
$ignoreErrors[] = [
// identifier: booleanAnd.rightAlwaysFalse
'message' => '#^Right side of && is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Ajax.php',
];
$ignoreErrors[] = [
// identifier: nullCoalesce.expr
'message' => '#^Expression on left side of \\?\\? is not nullable\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Auth.php',
];
$ignoreErrors[] = [
// identifier: return.type
'message' => '#^Method Auth\\:\\:login\\(\\) should return bool but returns int\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Auth.php',
];
$ignoreErrors[] = [
// identifier: return.type
'message' => '#^Method Auth\\:\\:validateLogin\\(\\) should return bool but returns int\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Auth.php',
];
$ignoreErrors[] = [
// identifier: booleanNot.alwaysTrue
'message' => '#^Negated boolean expression is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Auth.php',
];
$ignoreErrors[] = [
// identifier: isset.offset
'message' => '#^Offset \'auths_id\' on non\\-empty\\-array in isset\\(\\) always exists and is not nullable\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Auth.php',
];
$ignoreErrors[] = [
// identifier: assign.propertyType
'message' => '#^Property Auth\\:\\:\\$auth_succeded \\(int\\) does not accept bool\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Auth.php',
];
$ignoreErrors[] = [
// identifier: assign.propertyType
'message' => '#^Property Auth\\:\\:\\$auth_succeded \\(int\\) does not accept false\\.$#',
'count' => 8,
'path' => __DIR__ . '/src/Auth.php',
];
$ignoreErrors[] = [
// identifier: assign.propertyType
'message' => '#^Property Auth\\:\\:\\$auth_succeded \\(int\\) does not accept true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Auth.php',
];
$ignoreErrors[] = [
// identifier: property.defaultValue
'message' => '#^Property Auth\\:\\:\\$password_expired \\(int\\) does not accept default value of type false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Auth.php',
];
$ignoreErrors[] = [
// identifier: assign.propertyType
'message' => '#^Property Auth\\:\\:\\$user_present \\(int\\) does not accept bool\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Auth.php',
];
$ignoreErrors[] = [
// identifier: property.nonObject
'message' => '#^Cannot access property \\$fields on object\\|false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/AuthLDAP.php',
];
$ignoreErrors[] = [
// identifier: greater.invalid
'message' => '#^Comparison operation "\\>" between array\\|int and 0 results in an error\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/AuthLDAP.php',
];
$ignoreErrors[] = [
// identifier: else.unreachable
'message' => '#^Else branch is unreachable because previous condition is always true\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/AuthLDAP.php',
];
$ignoreErrors[] = [
// identifier: booleanAnd.leftAlwaysFalse
'message' => '#^Left side of && is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/AuthLDAP.php',
];
$ignoreErrors[] = [
// identifier: booleanAnd.leftAlwaysTrue
'message' => '#^Left side of && is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/AuthLDAP.php',
];
$ignoreErrors[] = [
// identifier: return.type
'message' => '#^Method AuthLDAP\\:\\:ldapStamp2UnixStamp\\(\\) should return int but returns string\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/AuthLDAP.php',
];
$ignoreErrors[] = [
// identifier: booleanNot.alwaysTrue
'message' => '#^Negated boolean expression is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/AuthLDAP.php',
];
$ignoreErrors[] = [
// identifier: assign.propertyType
'message' => '#^Property Auth\\:\\:\\$auth_succeded \\(int\\) does not accept false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/AuthLDAP.php',
];
$ignoreErrors[] = [
// identifier: assign.propertyType
'message' => '#^Property Auth\\:\\:\\$auth_succeded \\(int\\) does not accept true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/AuthLDAP.php',
];
$ignoreErrors[] = [
// identifier: assign.propertyType
'message' => '#^Property Auth\\:\\:\\$user_present \\(int\\) does not accept false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/AuthLDAP.php',
];
$ignoreErrors[] = [
// identifier: assign.propertyType
'message' => '#^Property Auth\\:\\:\\$user_present \\(int\\) does not accept true\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/AuthLDAP.php',
];
$ignoreErrors[] = [
// identifier: identical.alwaysFalse
'message' => '#^Strict comparison using \\=\\=\\= between bool and 0 will always evaluate to false\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/AuthLDAP.php',
];
$ignoreErrors[] = [
// identifier: identical.alwaysFalse
'message' => '#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/AuthLDAP.php',
];
$ignoreErrors[] = [
// identifier: offsetAccess.notFound
'message' => '#^Offset \'connect_string\' does not exist on string\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/AuthMail.php',
];
$ignoreErrors[] = [
// identifier: empty.offset
'message' => '#^Offset \'connect_string\' on string in empty\\(\\) does not exist\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/AuthMail.php',
];
$ignoreErrors[] = [
// identifier: offsetAccess.notFound
'message' => '#^Offset \'id\' does not exist on string\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/AuthMail.php',
];
$ignoreErrors[] = [
// identifier: nullCoalesce.property
'message' => '#^Property Blacklist\\:\\:\\$blacklists \\(array\\) on left side of \\?\\? is not nullable\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Blacklist.php',
];
$ignoreErrors[] = [
// identifier: instanceof.alwaysFalse
'message' => '#^Instanceof between Change\\|Contract\\|Problem\\|Project\\|Ticket and Item_Devices will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Budget.php',
];
$ignoreErrors[] = [
// identifier: return.void
'message' => '#^Method Budget\\:\\:showItems\\(\\) with return type void returns false but should not return anything\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Budget.php',
];
$ignoreErrors[] = [
// identifier: return.void
'message' => '#^Method Budget\\:\\:showValuesByEntity\\(\\) with return type void returns false but should not return anything\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Budget.php',
];
$ignoreErrors[] = [
// identifier: identical.alwaysFalse
'message' => '#^Strict comparison using \\=\\=\\= between array and false will always evaluate to false\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Cable.php',
];
$ignoreErrors[] = [
// identifier: return.void
'message' => '#^Method CableStrand\\:\\:showItems\\(\\) with return type void returns false but should not return anything\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CableStrand.php',
];
$ignoreErrors[] = [
// identifier: if.alwaysFalse
'message' => '#^If condition is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Central.php',
];
$ignoreErrors[] = [
// identifier: identical.alwaysFalse
'message' => '#^Strict comparison using \\=\\=\\= between array and false will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Certificate.php',
];
$ignoreErrors[] = [
// identifier: booleanAnd.leftAlwaysTrue
'message' => '#^Left side of && is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Certificate_Item.php',
];
$ignoreErrors[] = [
// identifier: ternary.alwaysTrue
'message' => '#^Ternary operator condition is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Certificate_Item.php',
];
$ignoreErrors[] = [
// identifier: property.notFound
'message' => '#^Access to an undefined property CommonGLPI\\:\\:\\$fields\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Change.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method CommonGLPI\\:\\:getID\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Change.php',
];
$ignoreErrors[] = [
// identifier: if.alwaysFalse
'message' => '#^If condition is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Change.php',
];
$ignoreErrors[] = [
// identifier: ternary.alwaysFalse
'message' => '#^Ternary operator condition is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Change.php',
];
$ignoreErrors[] = [
// identifier: ternary.alwaysTrue
'message' => '#^Ternary operator condition is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Change.php',
];
$ignoreErrors[] = [
// identifier: identical.alwaysFalse
'message' => '#^Strict comparison using \\=\\=\\= between array and false will always evaluate to false\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Cluster.php',
];
$ignoreErrors[] = [
// identifier: return.void
'message' => '#^Method CommonDBRelation\\:\\:processMassiveActionsForOneItemtype\\(\\) with return type void returns false but should not return anything\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBRelation.php',
];
$ignoreErrors[] = [
// identifier: isset.property
'message' => '#^Property CommonDBRelation\\:\\:\\$_force_log_option \\(int\\) in isset\\(\\) is not nullable\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBRelation.php',
];
$ignoreErrors[] = [
// identifier: if.alwaysFalse
'message' => '#^If condition is always false\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: booleanAnd.leftAlwaysFalse
'message' => '#^Left side of && is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: return.void
'message' => '#^Method CommonDBTM\\:\\:forwardEntityInformations\\(\\) with return type void returns false but should not return anything\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: return.type
'message' => '#^Method CommonDBTM\\:\\:isActive\\(\\) should return bool but returns int\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: return.type
'message' => '#^Method CommonDBTM\\:\\:isDeleted\\(\\) should return bool but returns int\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: return.type
'message' => '#^Method CommonDBTM\\:\\:isRecursive\\(\\) should return bool but returns int\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: return.type
'message' => '#^Method CommonDBTM\\:\\:isTemplate\\(\\) should return bool but returns int\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: booleanNot.alwaysFalse
'message' => '#^Negated boolean expression is always false\\.$#',
'count' => 4,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: assign.propertyType
'message' => '#^Property CommonDBTM\\:\\:\\$right \\(int\\) does not accept null\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: property.defaultValue
'message' => '#^Property CommonDBTM\\:\\:\\$searchopt \\(array\\) does not accept default value of type false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: booleanAnd.alwaysFalse
'message' => '#^Result of && is always false\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: booleanAnd.rightAlwaysFalse
'message' => '#^Right side of && is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: booleanAnd.rightAlwaysTrue
'message' => '#^Right side of && is always true\\.$#',
'count' => 7,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: booleanOr.rightAlwaysFalse
'message' => '#^Right side of \\|\\| is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: identical.alwaysFalse
'message' => '#^Strict comparison using \\=\\=\\= between array and false will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: identical.alwaysFalse
'message' => '#^Strict comparison using \\=\\=\\= between int and \'is_recursive\' will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: identical.alwaysFalse
'message' => '#^Strict comparison using \\=\\=\\= between numeric\\-string and \'\' will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: ternary.alwaysFalse
'message' => '#^Ternary operator condition is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBTM.php',
];
$ignoreErrors[] = [
// identifier: return.void
'message' => '#^Method CommonDBVisible\\:\\:showVisibility\\(\\) with return type void returns true but should not return anything\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDBVisible.php',
];
$ignoreErrors[] = [
// identifier: instanceof.alwaysFalse
'message' => '#^Instanceof between \\$this\\(CommonDropdown\\) and IPAddress will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonDropdown.php',
];
$ignoreErrors[] = [
// identifier: booleanAnd.alwaysFalse
'message' => '#^Result of && is always false\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/CommonDropdown.php',
];
$ignoreErrors[] = [
// identifier: function.impossibleType
'message' => '#^Call to function is_integer\\(\\) with string will always evaluate to false\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/CommonGLPI.php',
];
$ignoreErrors[] = [
// identifier: staticClassAccess.privateMethod
'message' => '#^Unsafe call to private method CommonGLPI\\:\\:getTabIconClass\\(\\) through static\\:\\:\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonGLPI.php',
];
$ignoreErrors[] = [
// identifier: smallerOrEqual.alwaysFalse
'message' => '#^Comparison operation "\\<\\=" between int\\<1, max\\> and 0 is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILActor.php',
];
$ignoreErrors[] = [
// identifier: booleanOr.rightAlwaysFalse
'message' => '#^Right side of \\|\\| is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILActor.php',
];
$ignoreErrors[] = [
// identifier: parameter.defaultValue
'message' => '#^Default value of the parameter \\#2 \\$withtemplate \\(int\\) of method CommonITILCost\\:\\:showForObject\\(\\) is incompatible with type bool\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILCost.php',
];
$ignoreErrors[] = [
// identifier: parameter.defaultValue
'message' => '#^Default value of the parameter \\#1 \\$params \\(array\\{\\}\\) of method CommonITILObject\\:\\:getCommonDatatableColumns\\(\\) is incompatible with type array\\{ticket_stats\\: bool\\}\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILObject.php',
];
$ignoreErrors[] = [
// identifier: parameter.defaultValue
'message' => '#^Default value of the parameter \\#2 \\$params \\(array\\{\\}\\) of method CommonITILObject\\:\\:getDatatableEntries\\(\\) is incompatible with type array\\{ticket_stats\\: bool\\}\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILObject.php',
];
$ignoreErrors[] = [
// identifier: nullCoalesce.expr
'message' => '#^Expression on left side of \\?\\? is not nullable\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILObject.php',
];
$ignoreErrors[] = [
// identifier: return.type
'message' => '#^Method CommonITILObject\\:\\:computePriority\\(\\) should return int but returns float\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILObject.php',
];
$ignoreErrors[] = [
// identifier: return.void
'message' => '#^Method CommonITILObject\\:\\:showSubForm\\(\\) with return type void returns mixed but should not return anything\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILObject.php',
];
$ignoreErrors[] = [
// identifier: booleanNot.alwaysTrue
'message' => '#^Negated boolean expression is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILObject.php',
];
$ignoreErrors[] = [
// identifier: booleanAnd.rightAlwaysTrue
'message' => '#^Right side of && is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILObject.php',
];
$ignoreErrors[] = [
// identifier: identical.alwaysFalse
'message' => '#^Strict comparison using \\=\\=\\= between CommonDBTM and \'User\' will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILObject.php',
];
$ignoreErrors[] = [
// identifier: identical.alwaysFalse
'message' => '#^Strict comparison using \\=\\=\\= between false and int\\|string\\|null will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILObject.php',
];
$ignoreErrors[] = [
// identifier: identical.alwaysFalse
'message' => '#^Strict comparison using \\=\\=\\= between mixed and null will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILObject.php',
];
$ignoreErrors[] = [
// identifier: staticMethod.notFound
'message' => '#^Call to an undefined static method CommonDBRelation\\:\\:getLinkedTo\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILObject_CommonITILObject.php',
];
$ignoreErrors[] = [
// identifier: function.impossibleType
'message' => '#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILSatisfaction.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method Sabre\\\\VObject\\\\Document\\:\\:getBaseComponent\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILTask.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method Sabre\\\\VObject\\\\Node\\:\\:add\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILTask.php',
];
$ignoreErrors[] = [
// identifier: greater.alwaysTrue
'message' => '#^Comparison operation "\\>" between int\\<1, max\\> and 0 is always true\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/CommonITILTask.php',
];
$ignoreErrors[] = [
// identifier: booleanAnd.leftAlwaysTrue
'message' => '#^Left side of && is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILTask.php',
];
$ignoreErrors[] = [
// identifier: return.void
'message' => '#^Method CommonITILTask\\:\\:displayPlanningItem\\(\\) with return type void returns string but should not return anything\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILTask.php',
];
$ignoreErrors[] = [
// identifier: return.empty
'message' => '#^Method CommonITILTask\\:\\:genericDisplayPlanningItem\\(\\) should return string but empty return statement found\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/CommonITILTask.php',
];
$ignoreErrors[] = [
// identifier: return.empty
'message' => '#^Method CommonITILTask\\:\\:genericPopulatePlanning\\(\\) should return array but empty return statement found\\.$#',
'count' => 4,
'path' => __DIR__ . '/src/CommonITILTask.php',
];
$ignoreErrors[] = [
// identifier: return.empty
'message' => '#^Method CommonITILTask\\:\\:getItemsAsVCalendars\\(\\) should return array\\<Sabre\\\\VObject\\\\Component\\\\VCalendar\\> but empty return statement found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILTask.php',
];
$ignoreErrors[] = [
// identifier: return.void
'message' => '#^Method CommonITILTask\\:\\:post_updateItem\\(\\) with return type void returns false but should not return anything\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILTask.php',
];
$ignoreErrors[] = [
// identifier: if.alwaysTrue
'message' => '#^If condition is always true\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILValidation.php',
];
$ignoreErrors[] = [
// identifier: arguments.count
'message' => '#^Method CommonITILValidation\\:\\:getItilObjectItemType\\(\\) invoked with 1 parameter, 0 required\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonITILValidationCron.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method CommonDBTM\\:\\:getClosedStatusArray\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonItilObject_Item.php',
];
$ignoreErrors[] = [
// identifier: method.notFound
'message' => '#^Call to an undefined method CommonGLPI\\:\\:getID\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonItilObject_Item.php',
];
$ignoreErrors[] = [
// identifier: greater.alwaysFalse
'message' => '#^Comparison operation "\\>" between 0 and 0 is always false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonItilObject_Item.php',
];
$ignoreErrors[] = [
// identifier: parameter.defaultValue
'message' => '#^Default value of the parameter \\#3 \\$itemtype \\(int\\) of method CommonItilObject_Item\\:\\:dropdownMyDevices\\(\\) is incompatible with type string\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonItilObject_Item.php',
];
$ignoreErrors[] = [
// identifier: return.void
'message' => '#^Method CommonItilObject_Item\\:\\:displayItemAddForm\\(\\) with return type void returns false but should not return anything\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/CommonItilObject_Item.php',
];
$ignoreErrors[] = [
// identifier: return.empty
'message' => '#^Method CommonItilObject_Item\\:\\:dropdown\\(\\) should return int\\|string\\|false but empty return statement found\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonItilObject_Item.php',
];
$ignoreErrors[] = [
// identifier: phpDoc.parseError
'message' => '#^PHPDoc tag @param has invalid value \\(integer type \\$obj_id ITIL object on which the used item are attached\\)\\: Unexpected token "type", expected variable at offset 76$#',
'count' => 1,
'path' => __DIR__ . '/src/CommonItilObject_Item.php',
];
$ignoreErrors[] = [
// identifier: instanceof.alwaysFalse
'message' => '#^Instanceof between static\\(Computer\\) and PDU will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Computer.php',
];
$ignoreErrors[] = [
// identifier: isset.offset
'message' => '#^Offset \'contact\' on array\\{\\}\\|array\\{states_id\\?\\: mixed, locations_id\\?\\: mixed\\} in isset\\(\\) does not exist\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Computer.php',
];
$ignoreErrors[] = [
// identifier: isset.offset
'message' => '#^Offset \'contact_num\' on array\\{\\}\\|array\\{states_id\\?\\: mixed, locations_id\\?\\: mixed\\} in isset\\(\\) does not exist\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Computer.php',
];
$ignoreErrors[] = [
// identifier: isset.offset
'message' => '#^Offset \'groups_id\' on array\\{\\}\\|array\\{states_id\\?\\: mixed, locations_id\\?\\: mixed\\} in isset\\(\\) does not exist\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Computer.php',
];
$ignoreErrors[] = [
// identifier: isset.offset
'message' => '#^Offset \'users_id\' on array\\{\\}\\|array\\{states_id\\?\\: mixed, locations_id\\?\\: mixed\\} in isset\\(\\) does not exist\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Computer.php',
];
$ignoreErrors[] = [
// identifier: nullCoalesce.property
'message' => '#^Property CommonDBTM\\:\\:\\$updates \\(array\\) on left side of \\?\\? is not nullable\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Computer.php',
];
$ignoreErrors[] = [
// identifier: booleanOr.alwaysFalse
'message' => '#^Result of \\|\\| is always false\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Computer.php',
];
$ignoreErrors[] = [
// identifier: identical.alwaysFalse
'message' => '#^Strict comparison using \\=\\=\\= between array and false will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Computer.php',
];
$ignoreErrors[] = [
// identifier: phpDoc.parseError
'message' => '#^PHPDoc tag @phpstan\\-return has invalid value \\(\\$expanded_info \\? array\\<string, \\{name\\: string, dark\\: boolean\\}\\> \\: array\\<string, string\\>\\)\\: Unexpected token "\\$expanded_info", expected type at offset 154$#',
'count' => 1,
'path' => __DIR__ . '/src/Config.php',
];
$ignoreErrors[] = [
// identifier: parameter.defaultValue
'message' => '#^Default value of the parameter \\#3 \\$is_deleted \\(int\\) of method Consumable\\:\\:getMassiveActionsForItemtype\\(\\) is incompatible with type bool\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Consumable.php',
];
$ignoreErrors[] = [
// identifier: method.childReturnType
'message' => '#^Return type \\(void\\) of method ContractCost\\:\\:showForm\\(\\) should be compatible with return type \\(bool\\) of method CommonDBTM\\:\\:showForm\\(\\)$#',
'count' => 1,
'path' => __DIR__ . '/src/ContractCost.php',
];
$ignoreErrors[] = [
// identifier: parameter.defaultValue
'message' => '#^Default value of the parameter \\#4 \\$options \\(array\\{\\}\\) of method CronTask\\:\\:register\\(\\) is incompatible with type array\\{state\\: 0\\|1\\|2, mode\\: 1\\|2, allowmode\\: int, hourmin\\: int, hourmax\\: int, logs_lifetime\\: int, param\\: int, comment\\: string\\}\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CronTask.php',
];
$ignoreErrors[] = [
// identifier: match.unreachable
'message' => '#^Match arm is unreachable because previous comparison is always true\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/CronTask.php',
];
$ignoreErrors[] = [
// identifier: isset.offset
'message' => '#^Offset \'allowmode\'\\|\'comment\'\\|\'hourmax\'\\|\'hourmin\'\\|\'logs_lifetime\'\\|\'mode\'\\|\'param\'\\|\'state\' on array\\{state\\: 0\\|1\\|2, mode\\: 1\\|2, allowmode\\: int, hourmin\\: int, hourmax\\: int, logs_lifetime\\: int, param\\: int, comment\\: string\\} in isset\\(\\) always exists and is not nullable\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/CronTask.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$connected on an unknown class DB\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/DBConnection.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$connected on an unknown class DBSlave\\.$#',
'count' => 3,
'path' => __DIR__ . '/src/DBConnection.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Access to property \\$dbhost on an unknown class DBSlave\\.$#',
'count' => 3,
'path' => __DIR__ . '/src/DBConnection.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method doQuery\\(\\) on an unknown class DB\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/DBConnection.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method doQuery\\(\\) on an unknown class DBSlave\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/DBConnection.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method error\\(\\) on an unknown class DB\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/DBConnection.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method error\\(\\) on an unknown class DBSlave\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/DBConnection.php',
];
$ignoreErrors[] = [
// identifier: class.notFound
'message' => '#^Call to method getGlobalVariables\\(\\) on an unknown class DB\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/DBConnection.php',
];
$ignoreErrors[] = [