forked from FakerPHP/Faker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpstan-baseline.neon
950 lines (761 loc) · 32.6 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
parameters:
ignoreErrors:
-
message: "#^Parameter \\#1 \\$input of function str_pad expects string, int given\\.$#"
count: 1
path: src/Faker/Calculator/Iban.php
-
message: "#^Binary operation \"\\*\" between int and string results in an error\\.$#"
count: 1
path: src/Faker/Calculator/Isbn.php
-
message: "#^Binary operation \"\\*\" between string and 2 results in an error\\.$#"
count: 1
path: src/Faker/Calculator/Luhn.php
-
message: "#^Method Faker\\\\Calculator\\\\Luhn\\:\\:computeCheckDigit\\(\\) should return string but returns int\\.$#"
count: 1
path: src/Faker/Calculator/Luhn.php
-
message: "#^Result of && is always false\\.$#"
count: 1
path: src/Faker/Container/ContainerBuilder.php
-
message: "#^Method Faker\\\\Generator\\:\\:optional\\(\\) should return Faker\\\\Generator but returns Faker\\\\ChanceGenerator\\.$#"
count: 1
path: src/Faker/Generator.php
-
message: "#^Method Faker\\\\Generator\\:\\:unique\\(\\) should return Faker\\\\Generator but returns Faker\\\\UniqueGenerator\\.$#"
count: 1
path: src/Faker/Generator.php
-
message: "#^Method Faker\\\\Generator\\:\\:valid\\(\\) should return Faker\\\\Generator but returns Faker\\\\ValidGenerator\\.$#"
count: 1
path: src/Faker/Generator.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
path: src/Faker/Guesser/Name.php
-
message: "#^Call to static method get\\(\\) on an unknown class Cake\\\\ORM\\\\TableRegistry\\.$#"
count: 1
path: src/Faker/ORM/CakePHP/EntityPopulator.php
-
message: "#^Access to protected property Faker\\\\ORM\\\\CakePHP\\\\EntityPopulator\\:\\:\\$class\\.$#"
count: 1
path: src/Faker/ORM/CakePHP/Populator.php
-
message: "#^Access to protected property Faker\\\\ORM\\\\CakePHP\\\\EntityPopulator\\:\\:\\$columnFormatters\\.$#"
count: 1
path: src/Faker/ORM/CakePHP/Populator.php
-
message: "#^Access to protected property Faker\\\\ORM\\\\CakePHP\\\\EntityPopulator\\:\\:\\$modifiers\\.$#"
count: 1
path: src/Faker/ORM/CakePHP/Populator.php
-
message: "#^Method Faker\\\\ORM\\\\CakePHP\\\\EntityPopulator\\:\\:guessModifiers\\(\\) invoked with 1 parameter, 0 required\\.$#"
count: 1
path: src/Faker/ORM/CakePHP/Populator.php
-
message: "#^Access to an undefined property Doctrine\\\\Persistence\\\\Mapping\\\\ClassMetadata\\:\\:\\$reflFields\\.$#"
count: 2
path: src/Faker/ORM/Doctrine/EntityPopulator.php
-
message: "#^Access to constant ONE on an unknown class Doctrine\\\\ODM\\\\MongoDB\\\\Mapping\\\\ClassMetadata\\.$#"
count: 1
path: src/Faker/ORM/Doctrine/EntityPopulator.php
-
message: "#^Access to constant ONE_TO_ONE on an unknown class Doctrine\\\\ORM\\\\Mapping\\\\ClassMetadata\\.$#"
count: 1
path: src/Faker/ORM/Doctrine/EntityPopulator.php
-
message: "#^Access to constant REFERENCE_ONE on an unknown class Doctrine\\\\ODM\\\\MongoDB\\\\Mapping\\\\ClassMetadata\\.$#"
count: 1
path: src/Faker/ORM/Doctrine/EntityPopulator.php
-
message: "#^Access to property \\$associationMappings on an unknown class Doctrine\\\\ODM\\\\MongoDB\\\\Mapping\\\\ClassMetadata\\.$#"
count: 1
path: src/Faker/ORM/Doctrine/EntityPopulator.php
-
message: "#^Call to an undefined method Doctrine\\\\Persistence\\\\Mapping\\\\ClassMetadata\\:\\:newInstance\\(\\)\\.$#"
count: 1
path: src/Faker/ORM/Doctrine/EntityPopulator.php
-
message: "#^Call to an undefined method Doctrine\\\\Persistence\\\\ObjectRepository\\<object\\>\\:\\:createQueryBuilder\\(\\)\\.$#"
count: 1
path: src/Faker/ORM/Doctrine/EntityPopulator.php
-
message: "#^Call to method getAssociationMappings\\(\\) on an unknown class Doctrine\\\\ORM\\\\Mapping\\\\ClassMetadata\\.$#"
count: 1
path: src/Faker/ORM/Doctrine/EntityPopulator.php
-
message: "#^Class Doctrine\\\\ODM\\\\MongoDB\\\\Mapping\\\\ClassMetadata not found\\.$#"
count: 1
path: src/Faker/ORM/Doctrine/EntityPopulator.php
-
message: "#^Class Doctrine\\\\ORM\\\\Mapping\\\\ClassMetadata not found\\.$#"
count: 1
path: src/Faker/ORM/Doctrine/EntityPopulator.php
-
message: "#^Call to method create\\(\\) on an unknown class Mandango\\\\Mandango\\.$#"
count: 1
path: src/Faker/ORM/Mandango/EntityPopulator.php
-
message: "#^Call to method getMetadata\\(\\) on an unknown class Mandango\\\\Mandango\\.$#"
count: 2
path: src/Faker/ORM/Mandango/EntityPopulator.php
-
message: "#^Call to method persist\\(\\) on an unknown class Mandango\\\\Mandango\\.$#"
count: 1
path: src/Faker/ORM/Mandango/EntityPopulator.php
-
message: "#^Parameter \\$mandango of method Faker\\\\ORM\\\\Mandango\\\\EntityPopulator\\:\\:execute\\(\\) has invalid type Mandango\\\\Mandango\\.$#"
count: 1
path: src/Faker/ORM/Mandango/EntityPopulator.php
-
message: "#^Parameter \\$mandango of method Faker\\\\ORM\\\\Mandango\\\\EntityPopulator\\:\\:guessColumnFormatters\\(\\) has invalid type Mandango\\\\Mandango\\.$#"
count: 1
path: src/Faker/ORM/Mandango/EntityPopulator.php
-
message: "#^Parameter \\$mandango of method Faker\\\\ORM\\\\Mandango\\\\Populator\\:\\:__construct\\(\\) has invalid type Mandango\\\\Mandango\\.$#"
count: 1
path: src/Faker/ORM/Mandango/Populator.php
-
message: "#^Access to constant BIGINT on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant BINARY on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant BLOB on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant BOOLEAN on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant BOOLEAN_EMU on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant CHAR on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant CLOB on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant CLOB_EMU on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant DECIMAL on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant DOUBLE on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant ENUM on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant FLOAT on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant INTEGER on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant LONGVARBINARY on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant LONGVARCHAR on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant NUMERIC on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant OBJECT on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant PHP_ARRAY on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant REAL on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant SMALLINT on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant TINYINT on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant VARBINARY on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Access to constant VARCHAR on an unknown class PropelColumnTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Call to method getSize\\(\\) on an unknown class ColumnMap\\.$#"
count: 2
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Call to method getType\\(\\) on an unknown class ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Call to method getValueSet\\(\\) on an unknown class ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Call to method isEpochTemporal\\(\\) on an unknown class ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Call to method isTemporal\\(\\) on an unknown class ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Parameter \\$column of method Faker\\\\ORM\\\\Propel\\\\ColumnTypeGuesser\\:\\:guessFormat\\(\\) has invalid type ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel/ColumnTypeGuesser.php
-
message: "#^Call to method getName\\(\\) on an unknown class ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel/EntityPopulator.php
-
message: "#^Call to method getTable\\(\\) on an unknown class ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel/EntityPopulator.php
-
message: "#^Parameter \\$columnMap of method Faker\\\\ORM\\\\Propel\\\\EntityPopulator\\:\\:isColumnBehavior\\(\\) has invalid type ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel/EntityPopulator.php
-
message: "#^Access to constant CONNECTION_WRITE on an unknown class Propel\\.$#"
count: 1
path: src/Faker/ORM/Propel/Populator.php
-
message: "#^Call to static method disableInstancePooling\\(\\) on an unknown class Propel\\.$#"
count: 1
path: src/Faker/ORM/Propel/Populator.php
-
message: "#^Call to static method enableInstancePooling\\(\\) on an unknown class Propel\\.$#"
count: 1
path: src/Faker/ORM/Propel/Populator.php
-
message: "#^Call to static method getConnection\\(\\) on an unknown class Propel\\.$#"
count: 1
path: src/Faker/ORM/Propel/Populator.php
-
message: "#^Call to static method isInstancePoolingEnabled\\(\\) on an unknown class Propel\\.$#"
count: 1
path: src/Faker/ORM/Propel/Populator.php
-
message: "#^Parameter \\$con of method Faker\\\\ORM\\\\Propel\\\\Populator\\:\\:execute\\(\\) has invalid type Faker\\\\ORM\\\\Propel\\\\PropelPDO\\.$#"
count: 1
path: src/Faker/ORM/Propel/Populator.php
-
message: "#^Access to constant BIGINT on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant BINARY on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant BLOB on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant BOOLEAN on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant BOOLEAN_EMU on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant BU_DATE on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant BU_TIMESTAMP on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant CHAR on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant CLOB on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant CLOB_EMU on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant DECIMAL on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant DOUBLE on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant ENUM on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant FLOAT on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant INTEGER on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant LONGVARBINARY on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant LONGVARCHAR on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant NUMERIC on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant OBJECT on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant PHP_ARRAY on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant REAL on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant SMALLINT on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant TINYINT on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant VARBINARY on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Access to constant VARCHAR on an unknown class Propel\\\\Generator\\\\Model\\\\PropelTypes\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Call to method getSize\\(\\) on an unknown class Propel\\\\Runtime\\\\Map\\\\ColumnMap\\.$#"
count: 2
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Call to method getType\\(\\) on an unknown class Propel\\\\Runtime\\\\Map\\\\ColumnMap\\.$#"
count: 3
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Call to method getValueSet\\(\\) on an unknown class Propel\\\\Runtime\\\\Map\\\\ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Call to method isTemporal\\(\\) on an unknown class Propel\\\\Runtime\\\\Map\\\\ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Parameter \\$column of method Faker\\\\ORM\\\\Propel2\\\\ColumnTypeGuesser\\:\\:guessFormat\\(\\) has invalid type Propel\\\\Runtime\\\\Map\\\\ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel2/ColumnTypeGuesser.php
-
message: "#^Call to method getName\\(\\) on an unknown class Propel\\\\Runtime\\\\Map\\\\ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel2/EntityPopulator.php
-
message: "#^Call to method getTable\\(\\) on an unknown class Propel\\\\Runtime\\\\Map\\\\ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel2/EntityPopulator.php
-
message: "#^Parameter \\$columnMap of method Faker\\\\ORM\\\\Propel2\\\\EntityPopulator\\:\\:isColumnBehavior\\(\\) has invalid type Propel\\\\Runtime\\\\Map\\\\ColumnMap\\.$#"
count: 1
path: src/Faker/ORM/Propel2/EntityPopulator.php
-
message: "#^Access to constant CONNECTION_WRITE on an unknown class Propel\\\\Runtime\\\\ServiceContainer\\\\ServiceContainerInterface\\.$#"
count: 1
path: src/Faker/ORM/Propel2/Populator.php
-
message: "#^Call to static method disableInstancePooling\\(\\) on an unknown class Propel\\\\Runtime\\\\Propel\\.$#"
count: 1
path: src/Faker/ORM/Propel2/Populator.php
-
message: "#^Call to static method enableInstancePooling\\(\\) on an unknown class Propel\\\\Runtime\\\\Propel\\.$#"
count: 1
path: src/Faker/ORM/Propel2/Populator.php
-
message: "#^Call to static method getConnection\\(\\) on an unknown class Propel\\\\Runtime\\\\Propel\\.$#"
count: 1
path: src/Faker/ORM/Propel2/Populator.php
-
message: "#^Call to static method isInstancePoolingEnabled\\(\\) on an unknown class Propel\\\\Runtime\\\\Propel\\.$#"
count: 1
path: src/Faker/ORM/Propel2/Populator.php
-
message: "#^Parameter \\$con of method Faker\\\\ORM\\\\Propel2\\\\Populator\\:\\:execute\\(\\) has invalid type Faker\\\\ORM\\\\Propel2\\\\PropelPDO\\.$#"
count: 1
path: src/Faker/ORM/Propel2/Populator.php
-
message: "#^Call to method build\\(\\) on an unknown class Spot\\\\Mapper\\.$#"
count: 2
path: src/Faker/ORM/Spot/EntityPopulator.php
-
message: "#^Call to method entity\\(\\) on an unknown class Spot\\\\Mapper\\.$#"
count: 1
path: src/Faker/ORM/Spot/EntityPopulator.php
-
message: "#^Call to method entityName\\(\\) on an unknown class Spot\\\\Relation\\\\BelongsTo\\.$#"
count: 1
path: src/Faker/ORM/Spot/EntityPopulator.php
-
message: "#^Call to method fields\\(\\) on an unknown class Spot\\\\Mapper\\.$#"
count: 1
path: src/Faker/ORM/Spot/EntityPopulator.php
-
message: "#^Call to method insert\\(\\) on an unknown class Spot\\\\Mapper\\.$#"
count: 1
path: src/Faker/ORM/Spot/EntityPopulator.php
-
message: "#^Call to method localKey\\(\\) on an unknown class Spot\\\\Relation\\\\BelongsTo\\.$#"
count: 1
path: src/Faker/ORM/Spot/EntityPopulator.php
-
message: "#^Call to method mapper\\(\\) on an unknown class Spot\\\\Locator\\.$#"
count: 1
path: src/Faker/ORM/Spot/EntityPopulator.php
-
message: "#^Class Spot\\\\Relation\\\\BelongsTo not found\\.$#"
count: 1
path: src/Faker/ORM/Spot/EntityPopulator.php
-
message: "#^Method Faker\\\\ORM\\\\Spot\\\\EntityPopulator\\:\\:getMapper\\(\\) should return string but returns Spot\\\\Mapper\\.$#"
count: 1
path: src/Faker/ORM/Spot/EntityPopulator.php
-
message: "#^Parameter \\$locator of method Faker\\\\ORM\\\\Spot\\\\EntityPopulator\\:\\:__construct\\(\\) has invalid type Spot\\\\Locator\\.$#"
count: 1
path: src/Faker/ORM/Spot/EntityPopulator.php
-
message: "#^Parameter \\$mapper of method Faker\\\\ORM\\\\Spot\\\\EntityPopulator\\:\\:__construct\\(\\) has invalid type Spot\\\\Mapper\\.$#"
count: 1
path: src/Faker/ORM/Spot/EntityPopulator.php
-
message: "#^Property Faker\\\\ORM\\\\Spot\\\\EntityPopulator\\:\\:\\$locator has unknown class Spot\\\\Locator as its type\\.$#"
count: 1
path: src/Faker/ORM/Spot/EntityPopulator.php
-
message: "#^Property Faker\\\\ORM\\\\Spot\\\\EntityPopulator\\:\\:\\$mapper has unknown class Spot\\\\Mapper as its type\\.$#"
count: 1
path: src/Faker/ORM/Spot/EntityPopulator.php
-
message: "#^Parameter \\$locator of method Faker\\\\ORM\\\\Spot\\\\Populator\\:\\:__construct\\(\\) has invalid type Spot\\\\Locator\\.$#"
count: 1
path: src/Faker/ORM/Spot/Populator.php
-
message: "#^Parameter \\$locator of method Faker\\\\ORM\\\\Spot\\\\Populator\\:\\:execute\\(\\) has invalid type Spot\\\\Locator\\.$#"
count: 1
path: src/Faker/ORM/Spot/Populator.php
-
message: "#^Class UnitEnum not found\\.$#"
count: 2
path: src/Faker/Provider/Base.php
-
message: """
#^Instantiation of deprecated class Faker\\\\DefaultGenerator\\:
Use ChanceGenerator instead$#
"""
count: 1
path: src/Faker/Provider/Base.php
-
message: "#^Negated boolean expression is always false\\.$#"
count: 1
path: src/Faker/Provider/Base.php
-
message: "#^Parameter \\#1 \\$input of function str_pad expects string, int given\\.$#"
count: 1
path: src/Faker/Provider/Base.php
-
message: "#^Parameter \\#2 \\$callback of function preg_replace_callback expects callable\\(array\\<int\\|string, string\\>\\)\\: string, array\\{class\\-string\\<static\\(Faker\\\\Provider\\\\Base\\)\\>, 'randomDigit'\\} given\\.$#"
count: 1
path: src/Faker/Provider/Base.php
-
message: "#^Parameter \\$validator of method Faker\\\\Provider\\\\Base\\:\\:valid\\(\\) has invalid type Faker\\\\Provider\\\\Closure\\.$#"
count: 1
path: src/Faker/Provider/Base.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
path: src/Faker/Provider/Base.php
-
message: "#^Method Faker\\\\Provider\\\\DateTime\\:\\:resolveTimezone\\(\\) never returns null so it can be removed from the return type\\.$#"
count: 1
path: src/Faker/Provider/DateTime.php
-
message: "#^Unsafe call to private method Faker\\\\Provider\\\\DateTime\\:\\:resolveTimezone\\(\\) through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/DateTime.php
-
message: "#^Unsafe call to private method Faker\\\\Provider\\\\DateTime\\:\\:setTimezone\\(\\) through static\\:\\:\\.$#"
count: 3
path: src/Faker/Provider/DateTime.php
-
message: "#^Method Faker\\\\Provider\\\\File\\:\\:file\\(\\) should return string but returns false\\.$#"
count: 1
path: src/Faker/Provider/File.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
path: src/Faker/Provider/Lorem.php
-
message: "#^Variable \\$text in empty\\(\\) always exists and is always falsy\\.$#"
count: 1
path: src/Faker/Provider/Lorem.php
-
message: "#^Parameter \\#1 \\$str of function md5 expects string, int given\\.$#"
count: 1
path: src/Faker/Provider/Miscellaneous.php
-
message: "#^Parameter \\#1 \\$str of function sha1 expects string, int given\\.$#"
count: 1
path: src/Faker/Provider/Miscellaneous.php
-
message: "#^Parameter \\#2 \\$data of function hash expects string, int given\\.$#"
count: 1
path: src/Faker/Provider/Miscellaneous.php
-
message: "#^Method Faker\\\\Provider\\\\PhoneNumber\\:\\:imei\\(\\) should return int but returns string\\.$#"
count: 1
path: src/Faker/Provider/PhoneNumber.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\ar_EG\\\\Person\\:\\:\\$prefix through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/ar_EG/Person.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\ar_JO\\\\Person\\:\\:\\$prefix through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/ar_JO/Person.php
-
message: "#^Access to an undefined static property static\\(Faker\\\\Provider\\\\ar_SA\\\\Address\\)\\:\\:\\$cityPrefix\\.$#"
count: 1
path: src/Faker/Provider/ar_SA/Address.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\ar_SA\\\\Person\\:\\:\\$prefix through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/ar_SA/Person.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\cs_CZ\\\\Address\\:\\:\\$regions through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/cs_CZ/Address.php
-
message: "#^Binary operation \"\\*\" between 2\\|3\\|4\\|5\\|6\\|7\\|8 and string results in an error\\.$#"
count: 1
path: src/Faker/Provider/cs_CZ/Company.php
-
message: "#^Binary operation \"\\-\" between string and 1 results in an error\\.$#"
count: 2
path: src/Faker/Provider/cs_CZ/DateTime.php
-
message: "#^Static call to instance method Faker\\\\Provider\\\\cs_CZ\\\\Person\\:\\:birthNumber\\(\\)\\.$#"
count: 2
path: src/Faker/Provider/cs_CZ/Person.php
-
message: "#^Parameter \\#2 \\$callback of function preg_replace_callback expects callable\\(array\\<int\\|string, string\\>\\)\\: string, array\\{class\\-string\\<static\\(Faker\\\\Provider\\\\en_CA\\\\Address\\)\\>, 'randomDigit'\\} given\\.$#"
count: 1
path: src/Faker/Provider/en_CA/Address.php
-
message: "#^Unsafe call to private method Faker\\\\Provider\\\\en_GB\\\\Company\\:\\:generateBranchTraderVatNumber\\(\\) through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/en_GB/Company.php
-
message: "#^Unsafe call to private method Faker\\\\Provider\\\\en_GB\\\\Company\\:\\:generateGovernmentVatNumber\\(\\) through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/en_GB/Company.php
-
message: "#^Unsafe call to private method Faker\\\\Provider\\\\en_GB\\\\Company\\:\\:generateHealthAuthorityVatNumber\\(\\) through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/en_GB/Company.php
-
message: "#^Unsafe call to private method Faker\\\\Provider\\\\en_GB\\\\Company\\:\\:generateStandardVatNumber\\(\\) through static\\:\\:\\.$#"
count: 2
path: src/Faker/Provider/en_GB/Company.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\en_NG\\\\Address\\:\\:\\$county through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/en_NG/Address.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\en_NG\\\\Address\\:\\:\\$regions through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/en_NG/Address.php
-
message: "#^Parameter \\#1 \\$input of function str_pad expects string, int given\\.$#"
count: 1
path: src/Faker/Provider/en_ZA/Person.php
-
message: "#^Parameter \\#3 \\$pad_string of function str_pad expects string, int given\\.$#"
count: 1
path: src/Faker/Provider/en_ZA/Person.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\es_AR\\\\Person\\:\\:\\$suffix through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/es_AR/Person.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\es_ES\\\\Person\\:\\:\\$suffix through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/es_ES/Person.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\es_VE\\\\Person\\:\\:\\$nationalityId through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/es_VE/Person.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\es_VE\\\\Person\\:\\:\\$suffix through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/es_VE/Person.php
-
message: "#^Binary operation \"\\*\" between string and int\\<2, 10\\> results in an error\\.$#"
count: 1
path: src/Faker/Provider/fa_IR/Person.php
-
message: "#^Method Faker\\\\Provider\\\\fa_IR\\\\Person\\:\\:createAreaCode\\(\\) never returns int so it can be removed from the return type\\.$#"
count: 1
path: src/Faker/Provider/fa_IR/Person.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\fr_FR\\\\Address\\:\\:\\$departments through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/fr_FR/Address.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\fr_FR\\\\Address\\:\\:\\$regions through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/fr_FR/Address.php
-
message: "#^Method Faker\\\\Provider\\\\hu_HU\\\\Address\\:\\:localCoordinates\\(\\) has invalid return type Faker\\\\Provider\\\\hu_HU\\\\latitude\\.$#"
count: 1
path: src/Faker/Provider/hu_HU/Address.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\hu_HU\\\\Person\\:\\:\\$suffix through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/hu_HU/Person.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\hy_AM\\\\Person\\:\\:\\$suffix through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/hy_AM/Person.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\id_ID\\\\Person\\:\\:\\$suffix through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/id_ID/Person.php
-
message: "#^Binary operation \"\\*\" between string and string results in an error\\.$#"
count: 1
path: src/Faker/Provider/is_IS/Person.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\it_IT\\\\Person\\:\\:\\$suffix through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/it_IT/Person.php
-
message: "#^Call to an undefined static method static\\(Faker\\\\Provider\\\\ja_JP\\\\Text\\)\\:\\:split\\(\\)\\.$#"
count: 1
path: src/Faker/Provider/ja_JP/Text.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\lt_LT\\\\Address\\:\\:\\$municipality through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/lt_LT/Address.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\ne_NP\\\\Person\\:\\:\\$middleNameFemale through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/ne_NP/Person.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\ne_NP\\\\Person\\:\\:\\$middleNameMale through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/ne_NP/Person.php
-
message: "#^Variable \\$companyName might not be defined\\.$#"
count: 2
path: src/Faker/Provider/nl_NL/Company.php
-
message: "#^Call to method format\\(\\) on an unknown class Faker\\\\Provider\\\\pl_PL\\\\DateTime\\.$#"
count: 4
path: src/Faker/Provider/pl_PL/Person.php
-
message: "#^Parameter \\$birthdate of method Faker\\\\Provider\\\\pl_PL\\\\Person\\:\\:pesel\\(\\) has invalid type Faker\\\\Provider\\\\pl_PL\\\\DateTime\\.$#"
count: 1
path: src/Faker/Provider/pl_PL/Person.php
-
message: "#^Binary operation \"\\*\" between string and int\\<2, max\\> results in an error\\.$#"
count: 1
path: src/Faker/Provider/pt_BR/check_digit.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\pt_PT\\\\Address\\:\\:\\$cities through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/pt_PT/Address.php
-
message: "#^Left side of \\|\\| is always true\\.$#"
count: 1
path: src/Faker/Provider/pt_PT/Person.php
-
message: "#^Right side of \\|\\| is always false\\.$#"
count: 1
path: src/Faker/Provider/pt_PT/Person.php
-
message: "#^Parameter \\#1 \\$string of function substr expects string, int given\\.$#"
count: 1
path: src/Faker/Provider/ro_RO/Person.php
-
message: "#^Parameter \\#1 \\$input of function str_pad expects string, int given\\.$#"
count: 1
path: src/Faker/Provider/ru_RU/Company.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\sk_SK\\\\Person\\:\\:\\$suffix through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/sk_SK/Person.php
-
message: "#^Static call to instance method Faker\\\\Provider\\\\sl_SI\\\\Person\\:\\:lastName\\(\\)\\.$#"
count: 2
path: src/Faker/Provider/sl_SI/Person.php
-
message: "#^Unsafe access to private property Faker\\\\Provider\\\\sv_SE\\\\Municipality\\:\\:\\$municipalities through static\\:\\:\\.$#"
count: 1
path: src/Faker/Provider/sv_SE/Municipality.php
-
message: "#^Parameter \\#1 \\$input of function str_pad expects string, int given\\.$#"
count: 1
path: src/Faker/Provider/zh_CN/Address.php
-
message: "#^Parameter \\#3 \\$pad_string of function str_pad expects string, int given\\.$#"
count: 1
path: src/Faker/Provider/zh_CN/Address.php
-
message: "#^Parameter \\#1 \\$autoload_function of function spl_autoload_register expects callable\\(string\\)\\: void, Closure\\(mixed\\)\\: bool given\\.$#"
count: 1
path: src/autoload.php