-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathphpstan-baseline.neon
More file actions
2461 lines (1970 loc) · 85.6 KB
/
phpstan-baseline.neon
File metadata and controls
2461 lines (1970 loc) · 85.6 KB
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: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionBase\\:\\:getParams\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ConnectionBase.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionBase\\:\\:quote\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ConnectionBase.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionBase\\:\\:quoteArr\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ConnectionBase.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionBase\\:\\:quoteArr\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ConnectionBase.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionBase\\:\\:setParams\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ConnectionBase.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionBase\\:\\:\\$connection_params type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ConnectionBase.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionInterface\\:\\:multiQuery\\(\\) has parameter \\$queue with no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ConnectionInterface.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionInterface\\:\\:quote\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ConnectionInterface.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionInterface\\:\\:quoteArr\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ConnectionInterface.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionInterface\\:\\:quoteArr\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ConnectionInterface.php
-
message: "#^PHPDoc tag @return with type Foolz\\\\SphinxQL\\\\Expression\\|int\\|string is not subtype of native type float\\|int\\|string\\.$#"
count: 1
path: src/Drivers/ConnectionInterface.php
-
message: "#^Offset int does not exist on array\\|null\\.$#"
count: 1
path: src/Drivers/MultiResultSet.php
-
message: "#^Parameter \\#1 \\$value of function count expects array\\|Countable, array\\|null given\\.$#"
count: 1
path: src/Drivers/MultiResultSet.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\Drivers\\\\MultiResultSet\\:\\:\\$stored type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/MultiResultSet.php
-
message: "#^Interface Foolz\\\\SphinxQL\\\\Drivers\\\\MultiResultSetInterface extends generic interface ArrayAccess but does not specify its types\\: TKey, TValue$#"
count: 1
path: src/Drivers/MultiResultSetInterface.php
-
message: "#^Interface Foolz\\\\SphinxQL\\\\Drivers\\\\MultiResultSetInterface extends generic interface Iterator but does not specify its types\\: TKey, TValue$#"
count: 1
path: src/Drivers/MultiResultSetInterface.php
-
message: "#^Access to an undefined property mysqli\\|PDO\\:\\:\\$errno\\.$#"
count: 4
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Access to an undefined property mysqli\\|PDO\\:\\:\\$error\\.$#"
count: 3
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Call to an undefined method mysqli\\|PDO\\:\\:close\\(\\)\\.$#"
count: 1
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Call to an undefined method mysqli\\|PDO\\:\\:multi_query\\(\\)\\.$#"
count: 1
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Call to an undefined method mysqli\\|PDO\\:\\:ping\\(\\)\\.$#"
count: 1
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Call to an undefined method mysqli\\|PDO\\:\\:real_escape_string\\(\\)\\.$#"
count: 1
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Cannot access property \\$connect_errno on mysqli\\|false\\.$#"
count: 1
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Cannot access property \\$connect_error on mysqli\\|false\\.$#"
count: 1
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Cannot call method options\\(\\) on mysqli\\|false\\.$#"
count: 1
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Cannot call method real_connect\\(\\) on mysqli\\|false\\.$#"
count: 1
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Cannot call method set_charset\\(\\) on mysqli\\|false\\.$#"
count: 1
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Mysqli\\\\Connection\\:\\:multiQuery\\(\\) has parameter \\$queue with no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Parameter \\#1 \\$callback of function set_error_handler expects \\(callable\\(int, string, string, int\\)\\: bool\\)\\|null, Closure\\(\\)\\: void given\\.$#"
count: 2
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Parameter \\#2 \\$result of class Foolz\\\\SphinxQL\\\\Drivers\\\\Mysqli\\\\ResultSetAdapter constructor expects bool\\|mysqli_result, bool\\|mysqli_result\\|PDOStatement given\\.$#"
count: 1
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionBase\\:\\:\\$connection \\(mysqli\\|PDO\\|null\\) does not accept mysqli\\|false\\.$#"
count: 1
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#"
count: 1
path: src/Drivers/Mysqli/Connection.php
-
message: "#^Access to an undefined property mysqli\\|PDO\\:\\:\\$errno\\.$#"
count: 1
path: src/Drivers/Mysqli/MultiResultSetAdapter.php
-
message: "#^Call to an undefined method mysqli\\|PDO\\:\\:more_results\\(\\)\\.$#"
count: 1
path: src/Drivers/Mysqli/MultiResultSetAdapter.php
-
message: "#^Call to an undefined method mysqli\\|PDO\\:\\:next_result\\(\\)\\.$#"
count: 1
path: src/Drivers/Mysqli/MultiResultSetAdapter.php
-
message: "#^Call to an undefined method mysqli\\|PDO\\:\\:store_result\\(\\)\\.$#"
count: 1
path: src/Drivers/Mysqli/MultiResultSetAdapter.php
-
message: "#^Access to an undefined property mysqli\\|PDO\\:\\:\\$affected_rows\\.$#"
count: 1
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Cannot access property \\$num_rows on bool\\|mysqli_result\\.$#"
count: 1
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Cannot call method data_seek\\(\\) on bool\\|mysqli_result\\.$#"
count: 3
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Cannot call method fetch_all\\(\\) on bool\\|mysqli_result\\.$#"
count: 3
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Cannot call method fetch_assoc\\(\\) on bool\\|mysqli_result\\.$#"
count: 1
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Cannot call method fetch_fields\\(\\) on bool\\|mysqli_result\\.$#"
count: 1
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Cannot call method fetch_row\\(\\) on bool\\|mysqli_result\\.$#"
count: 1
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Cannot call method free_result\\(\\) on bool\\|mysqli_result\\.$#"
count: 1
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Mysqli\\\\ResultSetAdapter\\:\\:fetch\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Mysqli\\\\ResultSetAdapter\\:\\:fetchAll\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Mysqli\\\\ResultSetAdapter\\:\\:getAffectedRows\\(\\) should return int but returns int\\<\\-1, max\\>\\|string\\.$#"
count: 1
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Mysqli\\\\ResultSetAdapter\\:\\:getFields\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Mysqli\\\\ResultSetAdapter\\:\\:getNumRows\\(\\) should return int but returns int\\<0, max\\>\\|string\\.$#"
count: 1
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Mysqli\\\\ResultSetAdapter\\:\\:store\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Mysqli/ResultSetAdapter.php
-
message: "#^Cannot call method execute\\(\\) on mysqli_stmt\\|PDOStatement\\|false\\.$#"
count: 1
path: src/Drivers/Pdo/Connection.php
-
message: "#^Cannot call method prepare\\(\\) on mysqli\\|PDO\\|null\\.$#"
count: 1
path: src/Drivers/Pdo/Connection.php
-
message: "#^Cannot call method query\\(\\) on mysqli\\|PDO\\|null\\.$#"
count: 1
path: src/Drivers/Pdo/Connection.php
-
message: "#^Cannot call method quote\\(\\) on mysqli\\|PDO\\|null\\.$#"
count: 1
path: src/Drivers/Pdo/Connection.php
-
message: "#^Dead catch \\- TypeError is never thrown in the try block\\.$#"
count: 1
path: src/Drivers/Pdo/Connection.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Pdo\\\\Connection\\:\\:multiQuery\\(\\) has parameter \\$queue with no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Pdo/Connection.php
-
message: "#^Parameter \\#1 \\$statement of class Foolz\\\\SphinxQL\\\\Drivers\\\\Pdo\\\\MultiResultSetAdapter constructor expects PDOStatement, bool\\|mysqli_result\\|PDOStatement given\\.$#"
count: 1
path: src/Drivers/Pdo/Connection.php
-
message: "#^Parameter \\#1 \\$statement of class Foolz\\\\SphinxQL\\\\Drivers\\\\Pdo\\\\ResultSetAdapter constructor expects PDOStatement, mysqli_stmt\\|PDOStatement\\|false given\\.$#"
count: 1
path: src/Drivers/Pdo/Connection.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Pdo\\\\ResultSetAdapter\\:\\:fetch\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Pdo/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Pdo\\\\ResultSetAdapter\\:\\:fetchAll\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Pdo/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Pdo\\\\ResultSetAdapter\\:\\:getFields\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Pdo/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Pdo\\\\ResultSetAdapter\\:\\:normalizeRow\\(\\) has parameter \\$row with no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Pdo/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Pdo\\\\ResultSetAdapter\\:\\:normalizeRow\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Pdo/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Pdo\\\\ResultSetAdapter\\:\\:normalizeRows\\(\\) has parameter \\$rows with no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Pdo/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Pdo\\\\ResultSetAdapter\\:\\:normalizeRows\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Pdo/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\Pdo\\\\ResultSetAdapter\\:\\:store\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/Pdo/ResultSetAdapter.php
-
message: "#^Parameter \\#1 \\$row of method Foolz\\\\SphinxQL\\\\Drivers\\\\Pdo\\\\ResultSetAdapter\\:\\:normalizeRow\\(\\) expects array, mixed given\\.$#"
count: 1
path: src/Drivers/Pdo/ResultSetAdapter.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:fetch\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:fetchAll\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:fetchAllAssoc\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:fetchAllFromStore\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:fetchAllNum\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:fetchAssoc\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:fetchFromStore\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:fetchNum\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:getStored\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:makeAssoc\\(\\) has parameter \\$numeric_array with no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:makeAssoc\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^PHPDoc tag @return with type array\\|bool is not subtype of native type array\\|false\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^PHPDoc tag @return with type array\\|bool\\|null is not subtype of native type array\\|false\\|null\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:\\$fetched type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:\\$fields type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSet\\:\\:\\$stored type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSet.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSetAdapterInterface\\:\\:fetch\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSetAdapterInterface.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSetAdapterInterface\\:\\:fetchAll\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSetAdapterInterface.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSetAdapterInterface\\:\\:getFields\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSetAdapterInterface.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSetAdapterInterface\\:\\:store\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSetAdapterInterface.php
-
message: "#^Interface Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSetInterface extends generic interface ArrayAccess but does not specify its types\\: TKey, TValue$#"
count: 1
path: src/Drivers/ResultSetInterface.php
-
message: "#^Interface Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSetInterface extends generic interface Iterator but does not specify its types\\: TKey, TValue$#"
count: 1
path: src/Drivers/ResultSetInterface.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSetInterface\\:\\:fetchAllAssoc\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSetInterface.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSetInterface\\:\\:fetchAllNum\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSetInterface.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSetInterface\\:\\:fetchAssoc\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSetInterface.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSetInterface\\:\\:fetchNum\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSetInterface.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Drivers\\\\ResultSetInterface\\:\\:getStored\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Drivers/ResultSetInterface.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Facet\\:\\:facet\\(\\) has parameter \\$columns with no value type specified in iterable type array\\.$#"
count: 1
path: src/Facet.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Facet\\:\\:facetFunction\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#"
count: 1
path: src/Facet.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Facet\\:\\:orderByFunction\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#"
count: 1
path: src/Facet.php
-
message: "#^PHPDoc tag @var for property Foolz\\\\SphinxQL\\\\Facet\\:\\:\\$by with type array is incompatible with native type string\\.$#"
count: 1
path: src/Facet.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\Facet\\:\\:\\$facet type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Facet.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\Facet\\:\\:\\$order_by type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Facet.php
-
message: "#^Cannot call method getEngine\\(\\) on Foolz\\\\SphinxQL\\\\Capabilities\\|null\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Cannot call method getVersion\\(\\) on Foolz\\\\SphinxQL\\\\Capabilities\\|null\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:buildCallWithOptions\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:buildCallWithOptions\\(\\) has parameter \\$requiredArgs with no value type specified in iterable type array\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:callAutocomplete\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:callQSuggest\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:callSnippets\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:callSnippets\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:callSuggest\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:flushRamchunk\\(\\) has parameter \\$index with no type specified\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:normalizeCallOptions\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:normalizeCallOptions\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:normalizeEnumStringOption\\(\\) has parameter \\$allowed with no value type specified in iterable type array\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:pairsToAssoc\\(\\) has parameter \\$result with no value type specified in iterable type array\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:pairsToAssoc\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:showIndexStatus\\(\\) has parameter \\$index with no type specified\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Helper\\:\\:showTables\\(\\) has parameter \\$index with no type specified\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Parameter \\#1 \\$value of method Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionInterface\\:\\:quote\\(\\) expects array\\|bool\\|float\\|Foolz\\\\SphinxQL\\\\Expression\\|int\\|string\\|null, mixed given\\.$#"
count: 2
path: src/Helper.php
-
message: "#^Parameter \\#4 \\$allowEmpty of method Foolz\\\\SphinxQL\\\\Helper\\:\\:normalizeStringOption\\(\\) expects bool, mixed given\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Parameter \\#4 \\$allowed of method Foolz\\\\SphinxQL\\\\Helper\\:\\:normalizeEnumStringOption\\(\\) expects array, mixed given\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Parameter \\#4 \\$min of method Foolz\\\\SphinxQL\\\\Helper\\:\\:normalizeIntegerOption\\(\\) expects int\\|null, mixed given\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Parameter \\#5 \\$max of method Foolz\\\\SphinxQL\\\\Helper\\:\\:normalizeIntegerOption\\(\\) expects int\\|null, mixed given\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Result of && is always false\\.$#"
count: 1
path: src/Helper.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\MatchBuilder\\:\\:field\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\MatchBuilder\\:\\:ignoreField\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\MatchBuilder\\:\\:zone\\(\\) has parameter \\$zones with no value type specified in iterable type array\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^PHPDoc tag @param for parameter \\$keywords with type Closure\\|Foolz\\\\SphinxQL\\\\Match\\|string is not subtype of native type Closure\\|Foolz\\\\SphinxQL\\\\Expression\\|Foolz\\\\SphinxQL\\\\MatchBuilder\\|int\\|string\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^PHPDoc tag @param for parameter \\$keywords with type Closure\\|Foolz\\\\SphinxQL\\\\Match\\|string is not subtype of native type Closure\\|Foolz\\\\SphinxQL\\\\Expression\\|Foolz\\\\SphinxQL\\\\MatchBuilder\\|string\\|null\\.$#"
count: 5
path: src/MatchBuilder.php
-
message: "#^Parameter \\#1 \\$keywords of method Foolz\\\\SphinxQL\\\\MatchBuilder\\:\\:match\\(\\) expects Closure\\|Foolz\\\\SphinxQL\\\\Expression\\|Foolz\\\\SphinxQL\\\\MatchBuilder\\|string\\|null, Closure\\|Foolz\\\\SphinxQL\\\\Expression\\|Foolz\\\\SphinxQL\\\\MatchBuilder\\|int\\|string given\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^Parameter \\#1 \\$keywords of method Foolz\\\\SphinxQL\\\\MatchBuilder\\:\\:match\\(\\) expects Closure\\|Foolz\\\\SphinxQL\\\\Expression\\|Foolz\\\\SphinxQL\\\\MatchBuilder\\|string\\|null, float\\|int\\|string given\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^Parameter \\$keywords of method Foolz\\\\SphinxQL\\\\MatchBuilder\\:\\:before\\(\\) has invalid type Foolz\\\\SphinxQL\\\\Match\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^Parameter \\$keywords of method Foolz\\\\SphinxQL\\\\MatchBuilder\\:\\:near\\(\\) has invalid type Foolz\\\\SphinxQL\\\\Match\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^Parameter \\$keywords of method Foolz\\\\SphinxQL\\\\MatchBuilder\\:\\:paragraph\\(\\) has invalid type Foolz\\\\SphinxQL\\\\Match\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^Parameter \\$keywords of method Foolz\\\\SphinxQL\\\\MatchBuilder\\:\\:sentence\\(\\) has invalid type Foolz\\\\SphinxQL\\\\Match\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^Parameter \\$keywords of method Foolz\\\\SphinxQL\\\\MatchBuilder\\:\\:zone\\(\\) has invalid type Foolz\\\\SphinxQL\\\\Match\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^Parameter \\$keywords of method Foolz\\\\SphinxQL\\\\MatchBuilder\\:\\:zonespan\\(\\) has invalid type Foolz\\\\SphinxQL\\\\Match\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\MatchBuilder\\:\\:\\$tokens type has no value type specified in iterable type array\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^Unsafe usage of new static\\(\\)\\.$#"
count: 1
path: src/MatchBuilder.php
-
message: "#^Cannot access offset 0 on mixed\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^If condition is always true\\.$#"
count: 2
path: src/Percolate.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Percolate\\:\\:convertArrayForQuery\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Percolate\\:\\:documents\\(\\) has parameter \\$documents with no value type specified in iterable type array\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Percolate\\:\\:generateInsert\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Percolate\\:\\:isAssocArray\\(\\) has parameter \\$arr with no value type specified in iterable type array\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Percolate\\:\\:options\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Percolate\\:\\:prepareFromJson\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\Percolate\\:\\:tags\\(\\) has parameter \\$tags with no value type specified in iterable type array\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^PHPDoc tag @return with type bool\\|string is not subtype of native type string\\|false\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^PHPDoc tag @return with type mixed is not subtype of native type string\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^Parameter \\#1 \\$array of method Foolz\\\\SphinxQL\\\\Percolate\\:\\:convertArrayForQuery\\(\\) expects array, mixed given\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^Parameter \\#1 \\$index of method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:into\\(\\) expects string, string\\|null given\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^Parameter \\#1 \\$string of method Foolz\\\\SphinxQL\\\\Percolate\\:\\:quoteString\\(\\) expects string, string\\|false given\\.$#"
count: 2
path: src/Percolate.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\Percolate\\:\\:\\$documents type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\Percolate\\:\\:\\$escapeChars type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\Percolate\\:\\:\\$options type has no value type specified in iterable type array\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^Result of && is always false\\.$#"
count: 2
path: src/Percolate.php
-
message: "#^Strict comparison using \\=\\=\\= between int\\<1, max\\> and 0 will always evaluate to false\\.$#"
count: 1
path: src/Percolate.php
-
message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Call to function is_string\\(\\) with array will always evaluate to false\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Cannot access offset 0 on non\\-empty\\-array\\|Closure\\|Foolz\\\\SphinxQL\\\\SphinxQL\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Cannot call method escape\\(\\) on Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionInterface\\|null\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Cannot call method multiQuery\\(\\) on Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionInterface\\|null\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Cannot call method query\\(\\) on Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionInterface\\|null\\.$#"
count: 4
path: src/SphinxQL.php
-
message: "#^Cannot call method quote\\(\\) on Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionInterface\\|null\\.$#"
count: 5
path: src/SphinxQL.php
-
message: "#^Cannot call method quoteArr\\(\\) on Foolz\\\\SphinxQL\\\\Drivers\\\\ConnectionInterface\\|null\\.$#"
count: 3
path: src/SphinxQL.php
-
message: "#^Else branch is unreachable because previous condition is always true\\.$#"
count: 2
path: src/SphinxQL.php
-
message: "#^Instanceof between string and Foolz\\\\SphinxQL\\\\Expression will always evaluate to false\\.$#"
count: 2
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:columns\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:compileBooleanClause\\(\\) has parameter \\$tokens with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:compileEscapeChars\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:compileEscapeChars\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:compileFilterCondition\\(\\) has parameter \\$filter with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:createFilterCondition\\(\\) has parameter \\$operator with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:createFilterCondition\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:createFilterCondition\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:from\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:getResult\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:getSelect\\(\\) return type has no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:option\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:orHaving\\(\\) has parameter \\$operator with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:orHaving\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:orWhere\\(\\) has parameter \\$operator with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:orWhere\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:orderByKnn\\(\\) has parameter \\$vector with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:select\\(\\) has parameter \\$columns with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:set\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:setFullEscapeChars\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:setHalfEscapeChars\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:setSelect\\(\\) has parameter \\$columns with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:values\\(\\) has parameter \\$array with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:where\\(\\) has parameter \\$operator with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Method Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:where\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Parameter \\#1 \\$string of function mb_strtolower expects string, string\\|null given\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Parameter \\#3 \\$subject of function preg_replace expects array\\|string, string\\|null given\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:\\$columns type has no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:\\$escape_full_chars type has no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:\\$escape_half_chars type has no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:\\$from type has no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:\\$group_by type has no value type specified in iterable type array\\.$#"
count: 1
path: src/SphinxQL.php
-
message: "#^Property Foolz\\\\SphinxQL\\\\SphinxQL\\:\\:\\$having type has no value type specified in iterable type array\\.$#"
count: 1