This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
forked from tine20/tine20
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan-baseline.neon
9454 lines (7565 loc) · 329 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: "#^Call to an undefined method Tinebase_User_Abstract\\:\\:getUserByPropertyFromSqlBackend\\(\\)\\.$#"
count: 1
path: tine20/ActiveSync/Controller.php
-
message: "#^Access to an undefined property Syncroton_Model_ISyncState\\:\\:\\$lastsync\\.$#"
count: 1
path: tine20/ActiveSync/Frontend/Abstract.php
-
message: "#^Access to an undefined property Syncroton_Model_SyncCollection\\:\\:\\$collectionId\\.$#"
count: 2
path: tine20/ActiveSync/Frontend/Abstract.php
-
message: "#^Access to an undefined property Syncroton_Model_SyncCollection\\:\\:\\$options\\.$#"
count: 1
path: tine20/ActiveSync/Frontend/Abstract.php
-
message: "#^Method ActiveSync_Frontend_Abstract\\:\\:getFileReference\\(\\) should return Syncroton_Model_FileReference but return statement is missing\\.$#"
count: 1
path: tine20/ActiveSync/Frontend/Abstract.php
-
message: "#^Parameter \\$collectionData of method ActiveSync_Frontend_Abstract\\:\\:deleteEntry\\(\\) has invalid type unknown_type\\.$#"
count: 1
path: tine20/ActiveSync/Frontend/Abstract.php
-
message: "#^Parameter \\$fileReference of method ActiveSync_Frontend_Abstract\\:\\:getFileReference\\(\\) has invalid type unknown_type\\.$#"
count: 1
path: tine20/ActiveSync/Frontend/Abstract.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_ipAddress$#"
count: 1
path: tine20/ActiveSync/Server/Http.php
-
message: "#^Method ActiveSync_Server_Plugin\\:\\:getServer\\(\\) should return Tinebase_Server_Interface but return statement is missing\\.$#"
count: 1
path: tine20/ActiveSync/Server/Plugin.php
-
message: "#^Call to method load\\(\\) on an unknown class Zend_CacheCore\\.$#"
count: 1
path: tine20/ActiveSync/TimezoneConverter.php
-
message: "#^Call to method save\\(\\) on an unknown class Zend_CacheCore\\.$#"
count: 1
path: tine20/ActiveSync/TimezoneConverter.php
-
message: "#^Method ActiveSync_TimezoneConverter\\:\\:_getOffsetsTemplate\\(\\) has invalid return type unknown_type\\.$#"
count: 1
path: tine20/ActiveSync/TimezoneConverter.php
-
message: "#^Method ActiveSync_TimezoneConverter\\:\\:_validateOffsets\\(\\) has invalid return type unknown_type\\.$#"
count: 1
path: tine20/ActiveSync/TimezoneConverter.php
-
message: "#^Method ActiveSync_TimezoneConverter\\:\\:_validateOffsets\\(\\) should return unknown_type but return statement is missing\\.$#"
count: 1
path: tine20/ActiveSync/TimezoneConverter.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$daylightTransition$#"
count: 1
path: tine20/ActiveSync/TimezoneConverter.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$standardTransition$#"
count: 1
path: tine20/ActiveSync/TimezoneConverter.php
-
message: "#^Parameter \\$_expectedTimezone of method ActiveSync_TimezoneConverter\\:\\:getListOfTimezones\\(\\) has invalid type optional\\.$#"
count: 1
path: tine20/ActiveSync/TimezoneConverter.php
-
message: "#^Property ActiveSync_TimezoneConverter\\:\\:\\$_cache has unknown class Zend_CacheCore as its type\\.$#"
count: 1
path: tine20/ActiveSync/TimezoneConverter.php
-
message: "#^Result of method ActiveSync_TimezoneConverter\\:\\:_checkTimezone\\(\\) \\(void\\) is used\\.$#"
count: 1
path: tine20/ActiveSync/TimezoneConverter.php
-
message: "#^Access to an undefined property Addressbook_Backend_Ldap\\:\\:\\$baseDn\\.$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^Array has 2 duplicate keys with value 'adr_one_countryname' \\('adr_one_countryname', 'adr_one_countryname'\\)\\.$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^Call to an undefined method Tinebase_Ldap\\:\\:fetch\\(\\)\\.$#"
count: 2
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^Call to an undefined method Tinebase_Ldap\\:\\:fetchAll\\(\\)\\.$#"
count: 2
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^Method Addressbook_Backend_Ldap\\:\\:_getFilter\\(\\) should return string but return statement is missing\\.$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^Method Addressbook_Backend_Ldap\\:\\:create\\(\\) should return Tinebase_Record_Interface but return statement is missing\\.$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^Method Addressbook_Backend_Ldap\\:\\:getMultiple\\(\\) has invalid return type Tinebase_RecordSet\\.$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^Method Addressbook_Backend_Ldap\\:\\:search\\(\\) should return Tinebase_Record_RecordSet but return statement is missing\\.$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^Method Addressbook_Backend_Ldap\\:\\:searchCount\\(\\) should return int but return statement is missing\\.$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^Method Addressbook_Backend_Ldap\\:\\:update\\(\\) should return Tinebase_Record_Interface but return statement is missing\\.$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^Method Addressbook_Backend_Ldap\\:\\:updateMultiple\\(\\) should return int but return statement is missing\\.$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^PHPDoc tag @param for parameter \\$_filter with type Tinebase_Record_Interface is not subtype of native type Tinebase_Model_Filter_FilterGroup\\|null\\.$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^PHPDoc tag @param has invalid value \\(array natvie ldap data of an entry\\)\\: Unexpected token \"natvie\", expected variable at offset 96$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_contact$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_id$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$options$#"
count: 1
path: tine20/Addressbook/Backend/Ldap.php
-
message: "#^Call to an undefined method Addressbook_Controller_Contact\\:\\:_getPathPart\\(\\)\\.$#"
count: 3
path: tine20/Addressbook/Controller/Contact.php
-
message: "#^Call to an undefined method Tinebase_Record_Interface\\:\\:isEmpty\\(\\)\\.$#"
count: 1
path: tine20/Addressbook/Controller/Contact.php
-
message: "#^Variable \\$countryname in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
path: tine20/Addressbook/Controller/Contact.php
-
message: "#^Access to an undefined property Zend_Config\\:\\:\\$rules\\.$#"
count: 1
path: tine20/Addressbook/Convert/Contact/String.php
-
message: "#^Binary operation \"\\.\" between 'Addressbook_Convert…' and Sabre\\\\VObject\\\\Node results in an error\\.$#"
count: 2
path: tine20/Addressbook/Convert/Contact/VCard/Abstract.php
-
message: "#^Binary operation \"\\.\" between non\\-empty\\-string and Sabre\\\\VObject\\\\Node results in an error\\.$#"
count: 1
path: tine20/Addressbook/Convert/Contact/VCard/Abstract.php
-
message: "#^Call to an undefined method Sabre\\\\VObject\\\\Node\\:\\:getParts\\(\\)\\.$#"
count: 1
path: tine20/Addressbook/Convert/Contact/VCard/Abstract.php
-
message: "#^Constant info not found\\.$#"
count: 1
path: tine20/Addressbook/Convert/Contact/VCard/Abstract.php
-
message: "#^Variable \\$addressFields might not be defined\\.$#"
count: 1
path: tine20/Addressbook/Convert/Contact/VCard/Abstract.php
-
message: "#^Variable \\$jpegphoto might not be defined\\.$#"
count: 3
path: tine20/Addressbook/Convert/Contact/VCard/Abstract.php
-
message: "#^Call to an undefined method Sabre\\\\VObject\\\\Node\\:\\:has\\(\\)\\.$#"
count: 1
path: tine20/Addressbook/Convert/Contact/VCard/Akonadi.php
-
message: "#^Call to an undefined method Sabre\\\\VObject\\\\Node\\:\\:has\\(\\)\\.$#"
count: 10
path: tine20/Addressbook/Convert/Contact/VCard/CalDAVSynchronizer.php
-
message: "#^Call to an undefined method Sabre\\\\VObject\\\\Node\\:\\:has\\(\\)\\.$#"
count: 3
path: tine20/Addressbook/Convert/Contact/VCard/DavDroid.php
-
message: "#^Call to an undefined method Sabre\\\\VObject\\\\Node\\:\\:has\\(\\)\\.$#"
count: 11
path: tine20/Addressbook/Convert/Contact/VCard/EMClient.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$data$#"
count: 1
path: tine20/Addressbook/Convert/Contact/VCard/EMClient.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$property$#"
count: 1
path: tine20/Addressbook/Convert/Contact/VCard/EMClient.php
-
message: "#^Call to an undefined method Sabre\\\\VObject\\\\Node\\:\\:has\\(\\)\\.$#"
count: 10
path: tine20/Addressbook/Convert/Contact/VCard/Evolution.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$orgextra$#"
count: 1
path: tine20/Addressbook/Convert/Contact/VCard/Evolution.php
-
message: "#^Call to an undefined method Sabre\\\\VObject\\\\Node\\:\\:has\\(\\)\\.$#"
count: 5
path: tine20/Addressbook/Convert/Contact/VCard/IOS.php
-
message: "#^Call to an undefined method Sabre\\\\VObject\\\\Node\\:\\:has\\(\\)\\.$#"
count: 1
path: tine20/Addressbook/Convert/Contact/VCard/KDE.php
-
message: "#^Parameter \\$blob of method Addressbook_Convert_Contact_VCard_Telefonbuch\\:\\:toTine20Model\\(\\) has invalid type stream\\.$#"
count: 1
path: tine20/Addressbook/Convert/Contact/VCard/Telefonbuch.php
-
message: "#^Access to an undefined property Sabre\\\\VObject\\\\Component\\\\VCard\\:\\:\\$X\\-OUTLOOK\\-EMAIL\\-2\\.$#"
count: 1
path: tine20/Addressbook/Convert/Contact/VCard/WebDAVCollaborator.php
-
message: "#^Access to an undefined property Sabre\\\\VObject\\\\Component\\\\VCard\\:\\:\\$X\\-OUTLOOK\\-EMAIL\\-3\\.$#"
count: 1
path: tine20/Addressbook/Convert/Contact/VCard/WebDAVCollaborator.php
-
message: "#^Method Addressbook_Convert_Contact_VCard_WebDAVCollaborator\\:\\:fromTine20Model\\(\\) has invalid return type Sabre_VObject_Component\\.$#"
count: 1
path: tine20/Addressbook/Convert/Contact/VCard/WebDAVCollaborator.php
-
message: "#^Variable \\$listRolesResultSet might not be defined\\.$#"
count: 1
path: tine20/Addressbook/Export/List/Doc.php
-
message: "#^Variable \\$listRolesResultSet might not be defined\\.$#"
count: 1
path: tine20/Addressbook/Export/List/Xls.php
-
message: "#^Call to an undefined method Tinebase_Log\\:\\:INFO\\(\\)\\.$#"
count: 1
path: tine20/Addressbook/Frontend/ActiveSync.php
-
message: "#^Method Addressbook_Frontend_CardDAV_AllContacts\\:\\:getChildren\\(\\) has invalid return type Sabre\\\\DAV\\\\DAV\\\\INode\\.$#"
count: 1
path: tine20/Addressbook/Frontend/CardDAV/AllContacts.php
-
message: "#^PHPDoc tag @return has invalid value \\(\\|null\\)\\: Unexpected token \"\\|\", expected type at offset 48$#"
count: 1
path: tine20/Addressbook/Import/Csv.php
-
message: "#^Call to an undefined method Tinebase_Log\\:\\:INFO\\(\\)\\.$#"
count: 2
path: tine20/Addressbook/Model/Contact.php
-
message: "#^Access to an undefined property Zend_Db_Adapter_Abstract\\:\\:\\$table_prefix\\.$#"
count: 1
path: tine20/Addressbook/Model/ListHiddenFilter.php
-
message: "#^Call to an undefined method Tinebase_Backend_Sql_Filter_GroupSelect\\:\\:joinLeft\\(\\)\\.$#"
count: 1
path: tine20/Addressbook/Model/ListHiddenFilter.php
-
message: "#^Access to an undefined property Zend_Db_Adapter_Abstract\\:\\:\\$table_prefix\\.$#"
count: 1
path: tine20/Addressbook/Model/ListMemberFilter.php
-
message: "#^Method Addressbook_Model_ListMemberFilter\\:\\:_setFilterGroup\\(\\) should return Tinebase_Model_Filter_FilterGroup but return statement is missing\\.$#"
count: 1
path: tine20/Addressbook/Model/ListMemberFilter.php
-
message: "#^Access to an undefined property Addressbook_Setup_DemoData\\:\\:\\$_sharedContainer\\.$#"
count: 1
path: tine20/Addressbook/Setup/DemoData.php
-
message: "#^Variable \\$isMan might not be defined\\.$#"
count: 2
path: tine20/Addressbook/Setup/DemoData.php
-
message: "#^Access to an undefined property Addressbook_Setup_Import_Egw14\\:\\:\\$_migrationStartTime\\.$#"
count: 1
path: tine20/Addressbook/Setup/Import/Egw14.php
-
message: "#^Access to an undefined property Zend_Config\\:\\:\\$birthdayDefaultTimezone\\.$#"
count: 1
path: tine20/Addressbook/Setup/Import/Egw14.php
-
message: "#^Access to an undefined property Zend_Config\\:\\:\\$setPersonalContainerGrants\\.$#"
count: 1
path: tine20/Addressbook/Setup/Import/Egw14.php
-
message: "#^Access to an undefined property Zend_Config\\:\\:\\$updateAccountRecords\\.$#"
count: 1
path: tine20/Addressbook/Setup/Import/Egw14.php
-
message: "#^Call to an undefined method Zend_Log\\:\\:DEBUG\\(\\)\\.$#"
count: 1
path: tine20/Addressbook/Setup/Import/Egw14.php
-
message: "#^Call to an undefined method Zend_Log\\:\\:ERR\\(\\)\\.$#"
count: 1
path: tine20/Addressbook/Setup/Import/Egw14.php
-
message: "#^Call to an undefined method Zend_Log\\:\\:NOTICE\\(\\)\\.$#"
count: 3
path: tine20/Addressbook/Setup/Import/Egw14.php
-
message: "#^Call to an undefined method Zend_Log\\:\\:WARN\\(\\)\\.$#"
count: 2
path: tine20/Addressbook/Setup/Import/Egw14.php
-
message: "#^Variable \\$savedRecord might not be defined\\.$#"
count: 1
path: tine20/Addressbook/Setup/Import/Egw14.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$application$#"
count: 1
path: tine20/Addressbook/Setup/Initialize.php
-
message: "#^Method Addressbook_Setup_Update_Release11\\:\\:update_15\\(\\) has invalid return type Set\\.$#"
count: 1
path: tine20/Addressbook/Setup/Update/Release11.php
-
message: "#^Method Addressbook_Setup_Update_Release11\\:\\:update_15\\(\\) should return Set but return statement is missing\\.$#"
count: 1
path: tine20/Addressbook/Setup/Update/Release11.php
-
message: "#^Class Tinebase_Exception_NotImplemented constructor invoked with 0 parameters, 1\\-2 required\\.$#"
count: 3
path: tine20/Admin/Backend/SambaMachine.php
-
message: "#^Method Admin_Backend_SambaMachine\\:\\:getMultiple\\(\\) has invalid return type Tinebase_RecordSet\\.$#"
count: 1
path: tine20/Admin/Backend/SambaMachine.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_contact$#"
count: 1
path: tine20/Admin/Backend/SambaMachine.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_id$#"
count: 1
path: tine20/Admin/Backend/SambaMachine.php
-
message: "#^Property Admin_Backend_SambaMachine\\:\\:\\$_samBackend has unknown class Tinebase_SambaSAM_Ldap as its type\\.$#"
count: 1
path: tine20/Admin/Backend/SambaMachine.php
-
message: "#^PHPDoc tag @var for constant Admin_Config\\:\\:APPS_TO_SHOW with type array is incompatible with value 'appsToShow'\\.$#"
count: 1
path: tine20/Admin/Config.php
-
message: "#^PHPDoc tag @var for constant Admin_Config\\:\\:DEFAULT_PASSWORD_MUST_CHANGE with type bool is incompatible with value 'defaultPasswordMust…'\\.$#"
count: 1
path: tine20/Admin/Config.php
-
message: "#^PHPDoc tag @var for constant Admin_Config\\:\\:MODULES_TO_SHOW with type array is incompatible with value 'modulesToShow'\\.$#"
count: 1
path: tine20/Admin/Config.php
-
message: "#^PHPDoc tag @var for constant Admin_Config\\:\\:QUOTA_ALLOW_TOTALINMB_MANAGEMNET with type bool is incompatible with value 'quotaAllowTotalInMB…'\\.$#"
count: 1
path: tine20/Admin/Config.php
-
message: "#^Method Admin_Controller_AccessLog\\:\\:delete\\(\\) should return Tinebase_Record_RecordSet but return statement is missing\\.$#"
count: 1
path: tine20/Admin/Controller/AccessLog.php
-
message: "#^PHPDoc tag @param for parameter \\$_filter with type optional\\|Tinebase_Model_Filter_FilterGroup is not subtype of native type Tinebase_Model_Filter_FilterGroup\\|null\\.$#"
count: 1
path: tine20/Admin/Controller/AccessLog.php
-
message: "#^PHPDoc tag @param for parameter \\$_pagination with type optional\\|Tinebase_Model_Pagination is not subtype of native type Tinebase_Model_Pagination\\|null\\.$#"
count: 1
path: tine20/Admin/Controller/AccessLog.php
-
message: "#^Parameter \\$_filter of method Admin_Controller_AccessLog\\:\\:search\\(\\) has invalid type optional\\.$#"
count: 1
path: tine20/Admin/Controller/AccessLog.php
-
message: "#^Parameter \\$_pagination of method Admin_Controller_AccessLog\\:\\:search\\(\\) has invalid type optional\\.$#"
count: 1
path: tine20/Admin/Controller/AccessLog.php
-
message: "#^Method Admin_Controller_Application\\:\\:search\\(\\) has invalid return type Tinebase_RecordSet_Application\\.$#"
count: 1
path: tine20/Admin/Controller/Application.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_dir$#"
count: 1
path: tine20/Admin/Controller/Application.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_filter$#"
count: 1
path: tine20/Admin/Controller/Application.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_limit$#"
count: 1
path: tine20/Admin/Controller/Application.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_sort$#"
count: 1
path: tine20/Admin/Controller/Application.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_start$#"
count: 1
path: tine20/Admin/Controller/Application.php
-
message: "#^Method Admin_Controller_Config\\:\\:delete\\(\\) should return Tinebase_Record_RecordSet but return statement is missing\\.$#"
count: 1
path: tine20/Admin/Controller/Config.php
-
message: "#^PHPDoc tag @param for parameter \\$_filter with type optional\\|Tinebase_Model_Filter_FilterGroup is not subtype of native type Tinebase_Model_Filter_FilterGroup\\|null\\.$#"
count: 1
path: tine20/Admin/Controller/Config.php
-
message: "#^PHPDoc tag @param for parameter \\$_pagination with type optional\\|Tinebase_Model_Pagination is not subtype of native type Tinebase_Model_Pagination\\|null\\.$#"
count: 1
path: tine20/Admin/Controller/Config.php
-
message: "#^PHPDoc tag @param has invalid value \\(array array of record identifiers\\)\\: Unexpected token \"array\", expected variable at offset 145$#"
count: 1
path: tine20/Admin/Controller/Config.php
-
message: "#^Parameter \\$_filter of method Admin_Controller_Config\\:\\:search\\(\\) has invalid type optional\\.$#"
count: 1
path: tine20/Admin/Controller/Config.php
-
message: "#^Parameter \\$_pagination of method Admin_Controller_Config\\:\\:search\\(\\) has invalid type optional\\.$#"
count: 1
path: tine20/Admin/Controller/Config.php
-
message: "#^Call to an undefined method Tinebase_Backend_Sql_Interface\\:\\:addContainer\\(\\)\\.$#"
count: 1
path: tine20/Admin/Controller/Container.php
-
message: "#^Call to an undefined method Tinebase_Backend_Sql_Interface\\:\\:getContainerById\\(\\)\\.$#"
count: 1
path: tine20/Admin/Controller/Container.php
-
message: "#^Call to an undefined method Tinebase_Backend_Sql_Interface\\:\\:getGrantsOfContainer\\(\\)\\.$#"
count: 2
path: tine20/Admin/Controller/Container.php
-
message: "#^Call to an undefined method Tinebase_Backend_Sql_Interface\\:\\:setGrants\\(\\)\\.$#"
count: 1
path: tine20/Admin/Controller/Container.php
-
message: "#^Call to an undefined method Tinebase_Log\\:\\:WARN\\(\\)\\.$#"
count: 1
path: tine20/Admin/Controller/Container.php
-
message: "#^PHPDoc tag @param has invalid value \\(array array of record identifiers\\)\\: Unexpected token \"array\", expected variable at offset 147$#"
count: 1
path: tine20/Admin/Controller/Container.php
-
message: "#^Class Tinebase_CustomField referenced with incorrect case\\: Tinebase_Customfield\\.$#"
count: 1
path: tine20/Admin/Controller/Customfield.php
-
message: "#^PHPDoc tag @param has invalid value \\(array array of record identifiers\\)\\: Unexpected token \"array\", expected variable at offset 68$#"
count: 1
path: tine20/Admin/Controller/Customfield.php
-
message: "#^PHPDoc tag @param has invalid value \\(array array of record identifiers\\)\\: Unexpected token \"array\", expected variable at offset 147$#"
count: 1
path: tine20/Admin/Controller/EmailAccount.php
-
message: "#^Access to an undefined property Admin_Controller_ImportExportDefinition\\:\\:\\$_doImportExportDefinitionACLChecks\\.$#"
count: 1
path: tine20/Admin/Controller/ImportExportDefinition.php
-
message: "#^Method Tinebase_Backend_Interface\\:\\:search\\(\\) invoked with 5 parameters, 0\\-3 required\\.$#"
count: 1
path: tine20/Admin/Controller/ImportExportDefinition.php
-
message: "#^Method Tinebase_Backend_Interface\\:\\:searchCount\\(\\) invoked with 2 parameters, 1 required\\.$#"
count: 1
path: tine20/Admin/Controller/ImportExportDefinition.php
-
message: "#^Method Tinebase_Backend_Interface\\:\\:update\\(\\) invoked with 3 parameters, 1 required\\.$#"
count: 1
path: tine20/Admin/Controller/ImportExportDefinition.php
-
message: "#^PHPDoc tag @param has invalid value \\(array array of record identifiers\\)\\: Unexpected token \"array\", expected variable at offset 145$#"
count: 1
path: tine20/Admin/Controller/ImportExportDefinition.php
-
message: "#^Method Tinebase_Backend_Interface\\:\\:search\\(\\) invoked with 5 parameters, 0\\-3 required\\.$#"
count: 1
path: tine20/Admin/Controller/LogEntry.php
-
message: "#^Method Tinebase_Backend_Interface\\:\\:searchCount\\(\\) invoked with 2 parameters, 1 required\\.$#"
count: 1
path: tine20/Admin/Controller/LogEntry.php
-
message: "#^Method Tinebase_Backend_Interface\\:\\:update\\(\\) invoked with 3 parameters, 1 required\\.$#"
count: 1
path: tine20/Admin/Controller/LogEntry.php
-
message: "#^PHPDoc tag @param has invalid value \\(array array of record identifiers\\)\\: Unexpected token \"array\", expected variable at offset 147$#"
count: 1
path: tine20/Admin/Controller/LogEntry.php
-
message: "#^PHPDoc tag @param has invalid value \\(array role members\\)\\: Unexpected token \"role\", expected variable at offset 103$#"
count: 1
path: tine20/Admin/Controller/Role.php
-
message: "#^PHPDoc tag @param has invalid value \\(array role members\\)\\: Unexpected token \"role\", expected variable at offset 96$#"
count: 1
path: tine20/Admin/Controller/Role.php
-
message: "#^PHPDoc tag @param has invalid value \\(array role rights\\)\\: Unexpected token \"role\", expected variable at offset 131$#"
count: 1
path: tine20/Admin/Controller/Role.php
-
message: "#^PHPDoc tag @param has invalid value \\(array role rights\\)\\: Unexpected token \"role\", expected variable at offset 138$#"
count: 1
path: tine20/Admin/Controller/Role.php
-
message: "#^Call to method create\\(\\) on an unknown class Admin_Backend_SambaMachine_Ldap\\.$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^Call to method delete\\(\\) on an unknown class Admin_Backend_SambaMachine_Ldap\\.$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^Call to method get\\(\\) on an unknown class Admin_Backend_SambaMachine_Ldap\\.$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^Call to method getAll\\(\\) on an unknown class Admin_Backend_SambaMachine_Ldap\\.$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^Call to method getMultiple\\(\\) on an unknown class Admin_Backend_SambaMachine_Ldap\\.$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^Call to method search\\(\\) on an unknown class Admin_Backend_SambaMachine_Ldap\\.$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^Call to method searchCount\\(\\) on an unknown class Admin_Backend_SambaMachine_Ldap\\.$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^Call to method update\\(\\) on an unknown class Admin_Backend_SambaMachine_Ldap\\.$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^Call to method updateMultiple\\(\\) on an unknown class Admin_Backend_SambaMachine_Ldap\\.$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^PHPDoc tag @param has invalid value \\(Admin_Model_SambaMachine\\)\\: Unexpected token \"\\\\n \", expected variable at offset 100$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^PHPDoc tag @param has invalid value \\(Admin_Model_SambaMachine\\)\\: Unexpected token \"\\\\n \", expected variable at offset 108$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^PHPDoc tag @param has invalid value \\(Tinebase_Record_RecordSet\\)\\: Unexpected token \"\\\\n \", expected variable at offset 109$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^PHPDoc tag @param has invalid value \\(array array of record identifiers\\)\\: Unexpected token \"array\", expected variable at offset 67$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^Property Admin_Controller_SambaMachine\\:\\:\\$_backend has unknown class Admin_Backend_SambaMachine_Ldap as its type\\.$#"
count: 1
path: tine20/Admin/Controller/SambaMachine.php
-
message: "#^PHPDoc tag @param for parameter \\$_pagination with type optional\\|Tinebase_Model_Pagination is not subtype of native type Tinebase_Record_Interface\\|null\\.$#"
count: 1
path: tine20/Admin/Controller/Tags.php
-
message: "#^Parameter \\$_filter of method Admin_Controller_Tags\\:\\:search_\\(\\) has invalid type optional\\.$#"
count: 1
path: tine20/Admin/Controller/Tags.php
-
message: "#^Parameter \\$_pagination of method Admin_Controller_Tags\\:\\:search_\\(\\) has invalid type optional\\.$#"
count: 1
path: tine20/Admin/Controller/Tags.php
-
message: "#^Access to an undefined property Zend_Session_Namespace\\:\\:\\$currentAccount\\.$#"
count: 1
path: tine20/Admin/Controller/User.php
-
message: "#^Access to an undefined property object\\:\\:\\$accountLoginName\\.$#"
count: 1
path: tine20/Admin/Controller/User.php
-
message: "#^Call to an undefined method Tinebase_User_Abstract\\:\\:getSqlPluginNames\\(\\)\\.$#"
count: 1
path: tine20/Admin/Controller/User.php
-
message: "#^Call to an undefined method Tinebase_User_Abstract\\:\\:sendDeactivationNotification\\(\\)\\.$#"
count: 1
path: tine20/Admin/Controller/User.php
-
message: "#^Call to an undefined method object\\:\\:getId\\(\\)\\.$#"
count: 1
path: tine20/Admin/Controller/User.php
-
message: "#^Method Admin_Controller_User\\:\\:delete\\(\\) should return array but return statement is missing\\.$#"
count: 1
path: tine20/Admin/Controller/User.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_account$#"
count: 1
path: tine20/Admin/Controller/User.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_accountId$#"
count: 1
path: tine20/Admin/Controller/User.php
-
message: "#^Property Admin_Controller_User\\:\\:\\$_samBackend has unknown class Tinebase_SambaSAM_Ldap as its type\\.$#"
count: 1
path: tine20/Admin/Controller/User.php
-
message: "#^Call to method toArray\\(\\) on an unknown class Tinebase_RecordSet_Application\\.$#"
count: 2
path: tine20/Admin/Frontend/Json.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_dir$#"
count: 3
path: tine20/Admin/Frontend/Json.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_filter$#"
count: 4
path: tine20/Admin/Frontend/Json.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_limit$#"
count: 3
path: tine20/Admin/Frontend/Json.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_paging$#"
count: 1
path: tine20/Admin/Frontend/Json.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_sort$#"
count: 3
path: tine20/Admin/Frontend/Json.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_start$#"
count: 3
path: tine20/Admin/Frontend/Json.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$state$#"
count: 1
path: tine20/Admin/Frontend/Json.php
-
message: "#^Variable \\$members in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
path: tine20/Admin/Import/Group/Csv.php
-
message: "#^Variable \\$password in empty\\(\\) always exists and is not falsy\\.$#"
count: 1
path: tine20/Admin/Setup/DemoData.php
-
message: "#^Call to an undefined method Tinebase_Record_Interface\\:\\:setReadOnlyFields\\(\\)\\.$#"
count: 1
path: tine20/Bookmarks/Controller/Bookmark.php
-
message: "#^PHPDoc tag @property has invalid value \\(int open_count\\)\\: Unexpected token \"open_count\", expected variable at offset 414$#"
count: 1
path: tine20/Bookmarks/Model/Bookmark.php
-
message: "#^PHPDoc tag @property has invalid value \\(string description\\)\\: Unexpected token \"description\", expected variable at offset 374$#"
count: 1
path: tine20/Bookmarks/Model/Bookmark.php
-
message: "#^PHPDoc tag @property has invalid value \\(string name\\)\\: Unexpected token \"name\", expected variable at offset 341$#"
count: 1
path: tine20/Bookmarks/Model/Bookmark.php
-
message: "#^PHPDoc tag @property has invalid value \\(string url\\)\\: Unexpected token \"url\", expected variable at offset 309$#"
count: 1
path: tine20/Bookmarks/Model/Bookmark.php
-
message: "#^Call to an undefined method Tinebase_Log\\:\\:NOTICE\\(\\)\\.$#"
count: 2
path: tine20/Calendar/Backend/Sql.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_attendee$#"
count: 1
path: tine20/Calendar/Backend/Sql.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_data$#"
count: 1
path: tine20/Calendar/Backend/Sql.php
-
message: "#^PHPDoc tag @param references unknown parameter\\: \\$_db$#"
count: 1
path: tine20/Calendar/Backend/Sql.php
-
message: "#^Variable \\$sql might not be defined\\.$#"
count: 2
path: tine20/Calendar/Backend/Sql.php
-
message: "#^PHPDoc tag @var for constant Calendar_Config\\:\\:DAYS_VIEW_MOUSE_WHEEL_INCREMENT with type int is incompatible with value 'daysviewwheelincrem…'\\.$#"
count: 1
path: tine20/Calendar/Config.php
-
message: "#^Call to an undefined method Tinebase_Backend_Sql_Interface\\:\\:moveEventsToContainer\\(\\)\\.$#"
count: 1
path: tine20/Calendar/Controller.php
-
message: "#^Call to an undefined method Tinebase_Backend_Sql_Interface\\:\\:replaceContactId\\(\\)\\.$#"
count: 1
path: tine20/Calendar/Controller.php
-
message: "#^Call to an undefined method Tinebase_Log\\:\\:INFO\\(\\)\\.$#"
count: 1
path: tine20/Calendar/Controller.php
-
message: "#^Call to an undefined method Tinebase_Record_Interface\\:\\:getPreferredEmailAddress\\(\\)\\.$#"
count: 1
path: tine20/Calendar/Controller.php
-
message: "#^Function Tinebase_Exception_UnexpectedValue not found\\.$#"
count: 1
path: tine20/Calendar/Controller.php
-
message: "#^Variable \\$attenderId might not be defined\\.$#"
count: 3
path: tine20/Calendar/Controller.php
-
message: "#^Variable \\$type might not be defined\\.$#"
count: 2
path: tine20/Calendar/Controller.php
-
message: "#^Method Calendar_Controller_Alarm\\:\\:enforceACL\\(\\) should return bool but return statement is missing\\.$#"
count: 1
path: tine20/Calendar/Controller/Alarm.php
-
message: "#^Access to an undefined property object\\:\\:\\$uid\\.$#"
count: 1
path: tine20/Calendar/Controller/Event.php
-
message: "#^Call to an undefined method Tinebase_Backend_Sql_Interface\\:\\:createAttendee\\(\\)\\.$#"
count: 2
path: tine20/Calendar/Controller/Event.php
-
message: "#^Call to an undefined method Tinebase_Backend_Sql_Interface\\:\\:deleteAttendee\\(\\)\\.$#"
count: 1
path: tine20/Calendar/Controller/Event.php
-
message: "#^Call to an undefined method Tinebase_Backend_Sql_Interface\\:\\:getByProperty\\(\\)\\.$#"
count: 1
path: tine20/Calendar/Controller/Event.php
-
message: "#^Call to an undefined method Tinebase_Backend_Sql_Interface\\:\\:updateAttendee\\(\\)\\.$#"
count: 2
path: tine20/Calendar/Controller/Event.php
-
message: "#^Call to an undefined method Tinebase_Record_Interface\\:\\:doFreeBusyCleanup\\(\\)\\.$#"
count: 1
path: tine20/Calendar/Controller/Event.php
-
message: "#^Call to an undefined method Tinebase_Record_Interface\\:\\:hasExternalOrganizer\\(\\)\\.$#"
count: 1
path: tine20/Calendar/Controller/Event.php
-
message: "#^Call to an undefined method Tinebase_Record_Interface\\:\\:hasGrant\\(\\)\\.$#"
count: 6
path: tine20/Calendar/Controller/Event.php
-
message: "#^Call to an undefined method Tinebase_Record_Interface\\:\\:isRescheduled\\(\\)\\.$#"
count: 1
path: tine20/Calendar/Controller/Event.php
-
message: "#^Call to an undefined method Tinebase_Record_RecordSet\\:\\:getOriginalDtStart\\(\\)\\.$#"
count: 3
path: tine20/Calendar/Controller/Event.php
-
message: "#^Call to an undefined method Tinebase_Record_RecordSet\\:\\:setRecurId\\(\\)\\.$#"
count: 1
path: tine20/Calendar/Controller/Event.php
-
message: "#^Default value of the parameter \\#3 \\$_nextBy \\(string\\) of method Calendar_Controller_Event\\:\\:_inspectAlarmSet\\(\\) is incompatible with type bool\\.$#"
count: 1
path: tine20/Calendar/Controller/Event.php
-
message: "#^Default value of the parameter \\#3 \\$_nextBy \\(string\\) of method Calendar_Controller_Event\\:\\:adoptAlarmTime\\(\\) is incompatible with type bool\\.$#"
count: 1
path: tine20/Calendar/Controller/Event.php
-
message: "#^Method Calendar_Controller_Event\\:\\:delete\\(\\) should return null but return statement is missing\\.$#"
count: 1