-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathphpstan-baseline.neon
More file actions
757 lines (632 loc) · 28.2 KB
/
phpstan-baseline.neon
File metadata and controls
757 lines (632 loc) · 28.2 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
parameters:
ignoreErrors:
-
message: '#^PHPDoc tag @throws with type TYPO3\\CMS\\Extbase\\Configuration\\Exception\\InvalidConfigurationTypeException is not subtype of Throwable$#'
identifier: throws.notThrowable
count: 1
path: Classes/Configuration/ExtensionBuilderConfigurationManager.php
-
message: '#^Right side of && is always true\.$#'
identifier: booleanAnd.rightAlwaysTrue
count: 1
path: Classes/Controller/BuilderModuleController.php
-
message: '#^Call to an undefined static method PhpParser\\Node\\Stmt\\Class_\:\:verifyModifier\(\)\.$#'
identifier: staticMethod.notFound
count: 1
path: Classes/Domain/Model/AbstractObject.php
-
message: '#^Call to function is_array\(\) with array will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 1
path: Classes/Domain/Model/AbstractObject.php
-
message: '#^Call to function is_array\(\) with array\<array\|string\> will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 1
path: Classes/Domain/Model/AbstractObject.php
-
message: '#^PHPDoc tag @param has invalid value \(string\[\] tags\)\: Unexpected token "tags", expected variable at offset 57 on line 3$#'
identifier: phpDoc.parseError
count: 1
path: Classes/Domain/Model/AbstractObject.php
-
message: '#^PHPDoc tag @return has invalid value \(\$this;\)\: Unexpected token ";", expected TOKEN_HORIZONTAL_WS at offset 89 on line 5$#'
identifier: phpDoc.parseError
count: 1
path: Classes/Domain/Model/AbstractObject.php
-
message: '#^Unreachable statement \- code above always terminates\.$#'
identifier: deadCode.unreachable
count: 1
path: Classes/Domain/Model/AbstractObject.php
-
message: '#^Variable \$tags in empty\(\) always exists and is always falsy\.$#'
identifier: empty.variable
count: 1
path: Classes/Domain/Model/AbstractObject.php
-
message: '#^Call to function is_array\(\) with array\<EBT\\ExtensionBuilder\\Domain\\Model\\ClassObject\\Method\> will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 1
path: Classes/Domain/Model/ClassObject/ClassObject.php
-
message: '#^Call to function is_array\(\) with list\<\(int\|string\)\> will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 1
path: Classes/Domain/Model/ClassObject/ClassObject.php
-
message: '#^Instanceof between string and PhpParser\\Node will always evaluate to false\.$#'
identifier: instanceof.alwaysFalse
count: 1
path: Classes/Domain/Model/ClassObject/ClassObject.php
-
message: '#^Parameter \#1 \$alias \(string\) of method EBT\\ExtensionBuilder\\Domain\\Model\\ClassObject\\ClassObject\:\:addAliasDeclaration\(\) should be compatible with parameter \$aliasDeclaration \(array\) of method EBT\\ExtensionBuilder\\Domain\\Model\\Container\:\:addAliasDeclaration\(\)$#'
identifier: method.childParameterType
count: 1
path: Classes/Domain/Model/ClassObject/ClassObject.php
-
message: '#^Call to function is_array\(\) with array will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 1
path: Classes/Domain/Model/ClassObject/DocComment.php
-
message: '#^PHPDoc tag @param has invalid value \(array FunctionObject\[\]\)\: Unexpected token "FunctionObject", expected variable at offset 24 on line 2$#'
identifier: phpDoc.parseError
count: 1
path: Classes/Domain/Model/Container.php
-
message: '#^PHPDoc tag @param has invalid value \(array \\EBT\\ExtensionBuilder\\Domain\\Model\\ClassObject\\ClassObject\[\]\)\: Unexpected token "\\\\EBT\\\\ExtensionBuilder\\\\Domain\\\\Model\\\\ClassObject\\\\ClassObject", expected variable at offset 24 on line 2$#'
identifier: phpDoc.parseError
count: 1
path: Classes/Domain/Model/Container.php
-
message: '#^PHPDoc tag @return with type array\|bool is not subtype of native type bool\.$#'
identifier: return.phpDocType
count: 1
path: Classes/Domain/Model/DomainObject.php
-
message: '#^Property EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\AbstractProperty\:\:\$class \(EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\) does not accept EBT\\ExtensionBuilder\\Domain\\Model\\ClassObject\\ClassObject\.$#'
identifier: assign.propertyType
count: 1
path: Classes/Domain/Model/DomainObject/AbstractProperty.php
-
message: '#^Method EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\ImageProperty\:\:getAllowedFileTypes\(\) should return bool but returns string\.$#'
identifier: return.type
count: 1
path: Classes/Domain/Model/DomainObject/ImageProperty.php
-
message: '#^Negated boolean expression is always false\.$#'
identifier: booleanNot.alwaysFalse
count: 1
path: Classes/Domain/Model/Extension.php
-
message: '#^Call to function is_array\(\) with array will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 1
path: Classes/Domain/Model/FunctionObject.php
-
message: '#^Call to function is_array\(\) with array\<EBT\\ExtensionBuilder\\Domain\\Model\\ClassObject\\MethodParameter\> will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 2
path: Classes/Domain/Model/FunctionObject.php
-
message: '#^Call to function is_array\(\) with array will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 1
path: Classes/Domain/Validator/ExtensionValidator.php
-
message: '#^Constant LF not found\.$#'
identifier: constant.notFound
count: 28
path: Classes/Domain/Validator/ExtensionValidator.php
-
message: '#^PHPDoc tag @throws with type TYPO3\\CMS\\Extbase\\Configuration\\Exception\\InvalidConfigurationTypeException is not subtype of Throwable$#'
identifier: throws.notThrowable
count: 2
path: Classes/Domain/Validator/ExtensionValidator.php
-
message: '#^Strict comparison using \=\=\= between bool and 0 will always evaluate to false\.$#'
identifier: identical.alwaysFalse
count: 1
path: Classes/Domain/Validator/ExtensionValidator.php
-
message: '#^Constant LF not found\.$#'
identifier: constant.notFound
count: 1
path: Classes/Factory/BackendModuleFactory.php
-
message: '#^Constant LF not found\.$#'
identifier: constant.notFound
count: 2
path: Classes/Factory/PluginFactory.php
-
message: '#^Access to an undefined property PhpParser\\Node\\Stmt\:\:\$params\.$#'
identifier: property.notFound
count: 2
path: Classes/Parser/ClassFactory.php
-
message: '#^Access to an undefined property PhpParser\\Node\\Stmt\:\:\$stmts\.$#'
identifier: property.notFound
count: 1
path: Classes/Parser/ClassFactory.php
-
message: '#^Instanceof between PhpParser\\Node\\PropertyItem and PhpParser\\Node\\PropertyItem will always evaluate to true\.$#'
identifier: instanceof.alwaysTrue
count: 1
path: Classes/Parser/ClassFactory.php
-
message: '#^Call to function is_array\(\) with array will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 1
path: Classes/Parser/NodeFactory.php
-
message: '#^Instanceof between PhpParser\\Node\\PropertyItem and PhpParser\\Node\\PropertyItem will always evaluate to true\.$#'
identifier: instanceof.alwaysTrue
count: 1
path: Classes/Parser/NodeFactory.php
-
message: '#^Method EBT\\ExtensionBuilder\\Parser\\NodeFactory\:\:buildNodeFromValue\(\) should return PhpParser\\Node\\Expr but returns PhpParser\\Node\.$#'
identifier: return.type
count: 1
path: Classes/Parser/NodeFactory.php
-
message: '#^Offset ''alias'' does not exist on string\.$#'
identifier: offsetAccess.notFound
count: 1
path: Classes/Parser/NodeFactory.php
-
message: '#^Offset ''name'' does not exist on string\.$#'
identifier: offsetAccess.notFound
count: 1
path: Classes/Parser/NodeFactory.php
-
message: '#^Property PhpParser\\Node\\PropertyItem\:\:\$default \(PhpParser\\Node\\Expr\|null\) does not accept PhpParser\\NodeAbstract\.$#'
identifier: assign.propertyType
count: 1
path: Classes/Parser/NodeFactory.php
-
message: '#^Access to an undefined property PhpParser\\Node\:\:\$consts\.$#'
identifier: property.notFound
count: 1
path: Classes/Parser/Utility/NodeConverter.php
-
message: '#^Access to an undefined property PhpParser\\NodeAbstract\:\:\$value\.$#'
identifier: property.notFound
count: 1
path: Classes/Parser/Utility/NodeConverter.php
-
message: '#^Call to function is_numeric\(\) with PhpParser\\NodeAbstract will always evaluate to false\.$#'
identifier: function.impossibleType
count: 1
path: Classes/Parser/Utility/NodeConverter.php
-
message: '#^Instanceof between PhpParser\\NodeAbstract and PhpParser\\Node will always evaluate to true\.$#'
identifier: instanceof.alwaysTrue
count: 1
path: Classes/Parser/Utility/NodeConverter.php
-
message: '#^Method EBT\\ExtensionBuilder\\Parser\\Utility\\NodeConverter\:\:getValueFromNode\(\) should return array\|string\|null but returns PhpParser\\Node\\Expr\|PhpParser\\Node\\Identifier\.$#'
identifier: return.type
count: 1
path: Classes/Parser/Utility/NodeConverter.php
-
message: '#^Method EBT\\ExtensionBuilder\\Parser\\Utility\\NodeConverter\:\:normalizeValue\(\) should return PhpParser\\Node\\Expr but returns PhpParser\\Node\.$#'
identifier: return.type
count: 1
path: Classes/Parser/Utility/NodeConverter.php
-
message: '#^Parameter \#1 \$node of static method EBT\\ExtensionBuilder\\Parser\\Utility\\NodeConverter\:\:getValueFromNode\(\) expects PhpParser\\NodeAbstract\|string, PhpParser\\Node given\.$#'
identifier: argument.type
count: 1
path: Classes/Parser/Utility/NodeConverter.php
-
message: '#^Unreachable statement \- code above always terminates\.$#'
identifier: deadCode.unreachable
count: 1
path: Classes/Parser/Utility/NodeConverter.php
-
message: '#^Return type \(void\) of method EBT\\ExtensionBuilder\\Parser\\Visitor\\FileVisitor\:\:beforeTraverse\(\) should be compatible with return type \(array\<PhpParser\\Node\>\|null\) of method PhpParser\\NodeVisitor\:\:beforeTraverse\(\)$#'
identifier: method.childReturnType
count: 1
path: Classes/Parser/Visitor/FileVisitor.php
-
message: '#^Return type \(void\) of method EBT\\ExtensionBuilder\\Parser\\Visitor\\FileVisitor\:\:beforeTraverse\(\) should be compatible with return type \(array\<PhpParser\\Node\>\|null\) of method PhpParser\\NodeVisitorAbstract\:\:beforeTraverse\(\)$#'
identifier: method.childReturnType
count: 1
path: Classes/Parser/Visitor/FileVisitor.php
-
message: '#^Return type \(void\) of method EBT\\ExtensionBuilder\\Parser\\Visitor\\FileVisitor\:\:enterNode\(\) should be compatible with return type \(array\<PhpParser\\Node\>\|int\|PhpParser\\Node\|null\) of method PhpParser\\NodeVisitor\:\:enterNode\(\)$#'
identifier: method.childReturnType
count: 1
path: Classes/Parser/Visitor/FileVisitor.php
-
message: '#^Return type \(void\) of method EBT\\ExtensionBuilder\\Parser\\Visitor\\FileVisitor\:\:enterNode\(\) should be compatible with return type \(array\<PhpParser\\Node\>\|int\|PhpParser\\Node\|null\) of method PhpParser\\NodeVisitorAbstract\:\:enterNode\(\)$#'
identifier: method.childReturnType
count: 1
path: Classes/Parser/Visitor/FileVisitor.php
-
message: '#^Return type \(void\) of method EBT\\ExtensionBuilder\\Parser\\Visitor\\FileVisitor\:\:leaveNode\(\) should be compatible with return type \(array\<PhpParser\\Node\>\|int\|PhpParser\\Node\|null\) of method PhpParser\\NodeVisitor\:\:leaveNode\(\)$#'
identifier: method.childReturnType
count: 1
path: Classes/Parser/Visitor/FileVisitor.php
-
message: '#^Return type \(void\) of method EBT\\ExtensionBuilder\\Parser\\Visitor\\FileVisitor\:\:leaveNode\(\) should be compatible with return type \(array\<PhpParser\\Node\>\|int\|PhpParser\\Node\|null\) of method PhpParser\\NodeVisitorAbstract\:\:leaveNode\(\)$#'
identifier: method.childReturnType
count: 1
path: Classes/Parser/Visitor/FileVisitor.php
-
message: '#^Strict comparison using \=\=\= between EBT\\ExtensionBuilder\\Domain\\Model\\ClassObject\\ClassObject and false will always evaluate to false\.$#'
identifier: identical.alwaysFalse
count: 2
path: Classes/Parser/Visitor/FileVisitor.php
-
message: '#^Call to an undefined method PhpParser\\Node\:\:__get\(\)\.$#'
identifier: method.notFound
count: 2
path: Classes/Parser/Visitor/ReplaceClassNamesVisitor.php
-
message: '#^Call to an undefined method PhpParser\\Node\:\:setClass\(\)\.$#'
identifier: method.notFound
count: 1
path: Classes/Parser/Visitor/ReplaceClassNamesVisitor.php
-
message: '#^Return type \(void\) of method EBT\\ExtensionBuilder\\Parser\\Visitor\\ReplaceClassNamesVisitor\:\:afterTraverse\(\) should be compatible with return type \(array\<PhpParser\\Node\>\|null\) of method PhpParser\\NodeVisitor\:\:afterTraverse\(\)$#'
identifier: method.childReturnType
count: 1
path: Classes/Parser/Visitor/ReplaceClassNamesVisitor.php
-
message: '#^Return type \(void\) of method EBT\\ExtensionBuilder\\Parser\\Visitor\\ReplaceClassNamesVisitor\:\:afterTraverse\(\) should be compatible with return type \(array\<PhpParser\\Node\>\|null\) of method PhpParser\\NodeVisitorAbstract\:\:afterTraverse\(\)$#'
identifier: method.childReturnType
count: 1
path: Classes/Parser/Visitor/ReplaceClassNamesVisitor.php
-
message: '#^Return type \(void\) of method EBT\\ExtensionBuilder\\Parser\\Visitor\\ReplaceClassNamesVisitor\:\:beforeTraverse\(\) should be compatible with return type \(array\<PhpParser\\Node\>\|null\) of method PhpParser\\NodeVisitor\:\:beforeTraverse\(\)$#'
identifier: method.childReturnType
count: 1
path: Classes/Parser/Visitor/ReplaceClassNamesVisitor.php
-
message: '#^Return type \(void\) of method EBT\\ExtensionBuilder\\Parser\\Visitor\\ReplaceClassNamesVisitor\:\:beforeTraverse\(\) should be compatible with return type \(array\<PhpParser\\Node\>\|null\) of method PhpParser\\NodeVisitorAbstract\:\:beforeTraverse\(\)$#'
identifier: method.childReturnType
count: 1
path: Classes/Parser/Visitor/ReplaceClassNamesVisitor.php
-
message: '#^Return type \(void\) of method EBT\\ExtensionBuilder\\Parser\\Visitor\\ReplaceClassNamesVisitor\:\:enterNode\(\) should be compatible with return type \(array\<PhpParser\\Node\>\|int\|PhpParser\\Node\|null\) of method PhpParser\\NodeVisitor\:\:enterNode\(\)$#'
identifier: method.childReturnType
count: 1
path: Classes/Parser/Visitor/ReplaceClassNamesVisitor.php
-
message: '#^Return type \(void\) of method EBT\\ExtensionBuilder\\Parser\\Visitor\\ReplaceClassNamesVisitor\:\:enterNode\(\) should be compatible with return type \(array\<PhpParser\\Node\>\|int\|PhpParser\\Node\|null\) of method PhpParser\\NodeVisitorAbstract\:\:enterNode\(\)$#'
identifier: method.childReturnType
count: 1
path: Classes/Parser/Visitor/ReplaceClassNamesVisitor.php
-
message: '#^Call to an undefined method EBT\\ExtensionBuilder\\Domain\\Model\\AbstractObject\:\:setClasses\(\)\.$#'
identifier: method.notFound
count: 3
path: Classes/Service/ClassBuilder.php
-
message: '#^Call to an undefined method EBT\\ExtensionBuilder\\Domain\\Model\\AbstractObject\:\:setTypeHint\(\)\.$#'
identifier: method.notFound
count: 1
path: Classes/Service/ClassBuilder.php
-
message: '#^Call to an undefined method EBT\\ExtensionBuilder\\Domain\\Model\\AbstractObject\:\:setVarType\(\)\.$#'
identifier: method.notFound
count: 6
path: Classes/Service/ClassBuilder.php
-
message: '#^Call to an undefined method EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\AbstractProperty\:\:setTag\(\)\.$#'
identifier: method.notFound
count: 1
path: Classes/Service/ClassBuilder.php
-
message: '#^Call to method getTypeHint\(\) on an unknown class Model\\DomainObject\\Relation\\AbstractRelation\.$#'
identifier: class.notFound
count: 1
path: Classes/Service/ClassBuilder.php
-
message: '#^If condition is always false\.$#'
identifier: if.alwaysFalse
count: 1
path: Classes/Service/ClassBuilder.php
-
message: '#^Negated boolean expression is always true\.$#'
identifier: booleanNot.alwaysTrue
count: 1
path: Classes/Service/ClassBuilder.php
-
message: '#^Offset ''name'' on string in isset\(\) does not exist\.$#'
identifier: isset.offset
count: 1
path: Classes/Service/ClassBuilder.php
-
message: '#^Parameter \#1 \$classProperty of method EBT\\ExtensionBuilder\\Domain\\Model\\ClassObject\\ClassObject\:\:setProperty\(\) expects EBT\\ExtensionBuilder\\Domain\\Model\\ClassObject\\Property, EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\AbstractProperty given\.$#'
identifier: argument.type
count: 1
path: Classes/Service/ClassBuilder.php
-
message: '#^Parameter \#1 \$domainProperty of method EBT\\ExtensionBuilder\\Service\\ClassBuilder\:\:buildAddMethod\(\) expects EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\Relation\\AbstractRelation, EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\AbstractProperty given\.$#'
identifier: argument.type
count: 1
path: Classes/Service/ClassBuilder.php
-
message: '#^Parameter \#1 \$domainProperty of method EBT\\ExtensionBuilder\\Service\\ClassBuilder\:\:buildRemoveMethod\(\) expects EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\Relation\\AbstractRelation, EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\AbstractProperty given\.$#'
identifier: argument.type
count: 1
path: Classes/Service/ClassBuilder.php
-
message: '#^Property EBT\\ExtensionBuilder\\Service\\ClassBuilder\:\:\$classFactory is never read, only written\.$#'
identifier: property.onlyWritten
count: 1
path: Classes/Service/ClassBuilder.php
-
message: '#^Strict comparison using \=\=\= between null and null will always evaluate to true\.$#'
identifier: identical.alwaysTrue
count: 1
path: Classes/Service/ClassBuilder.php
-
message: '#^Unreachable statement \- code above always terminates\.$#'
identifier: deadCode.unreachable
count: 1
path: Classes/Service/ClassBuilder.php
-
message: '#^Call to an undefined method EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\AbstractProperty\:\:setForeignModel\(\)\.$#'
identifier: method.notFound
count: 1
path: Classes/Service/ExtensionSchemaBuilder.php
-
message: '#^Call to an undefined method EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\AbstractProperty\:\:setRenderType\(\)\.$#'
identifier: method.notFound
count: 1
path: Classes/Service/ExtensionSchemaBuilder.php
-
message: '#^Constant LF not found\.$#'
identifier: constant.notFound
count: 1
path: Classes/Service/ExtensionSchemaBuilder.php
-
message: '#^Call to function is_array\(\) with array will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 1
path: Classes/Service/FileGenerator.php
-
message: '#^Constant LF not found\.$#'
identifier: constant.notFound
count: 1
path: Classes/Service/FileGenerator.php
-
message: '#^If condition is always true\.$#'
identifier: if.alwaysTrue
count: 2
path: Classes/Service/FileGenerator.php
-
message: '#^PHPDoc tag @return has invalid value \(void;\)\: Unexpected token ";", expected TOKEN_HORIZONTAL_WS at offset 157 on line 6$#'
identifier: phpDoc.parseError
count: 1
path: Classes/Service/FileGenerator.php
-
message: '#^PHPDoc tag @return with type mixed is not subtype of native type string\|null\.$#'
identifier: return.phpDocType
count: 2
path: Classes/Service/FileGenerator.php
-
message: '#^Unreachable statement \- code above always terminates\.$#'
identifier: deadCode.unreachable
count: 3
path: Classes/Service/FileGenerator.php
-
message: '#^Call to an undefined method EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\AbstractProperty\:\:setAllowedFileTypes\(\)\.$#'
identifier: method.notFound
count: 1
path: Classes/Service/ObjectSchemaBuilder.php
-
message: '#^Call to an undefined method EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\AbstractProperty\:\:setMaxItems\(\)\.$#'
identifier: method.notFound
count: 1
path: Classes/Service/ObjectSchemaBuilder.php
-
message: '#^Variable \$tableName on left side of \?\? always exists and is not nullable\.$#'
identifier: nullCoalesce.variable
count: 1
path: Classes/Service/ObjectSchemaBuilder.php
-
message: '#^Constant LF not found\.$#'
identifier: constant.notFound
count: 5
path: Classes/Service/Printer.php
-
message: '#^Call to function is_array\(\) with array will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 1
path: Classes/Service/RoundTrip.php
-
message: '#^Cannot assign offset ''name'' to string\.$#'
identifier: offsetAssign.dimType
count: 2
path: Classes/Service/RoundTrip.php
-
message: '#^Constant LF not found\.$#'
identifier: constant.notFound
count: 2
path: Classes/Service/RoundTrip.php
-
message: '#^Offset ''name'' does not exist on string\.$#'
identifier: offsetAccess.notFound
count: 2
path: Classes/Service/RoundTrip.php
-
message: '#^PHPDoc tag @throws with type Exception\|TYPO3\\CMS\\Extbase\\Configuration\\Exception\\InvalidConfigurationTypeException is not subtype of Throwable$#'
identifier: throws.notThrowable
count: 1
path: Classes/Service/RoundTrip.php
-
message: '#^Parameter \#1 \$relation of method EBT\\ExtensionBuilder\\Service\\RoundTrip\:\:getForeignClassName\(\) expects EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\Relation\\AbstractRelation, EBT\\ExtensionBuilder\\Domain\\Model\\DomainObject\\AbstractProperty given\.$#'
identifier: argument.type
count: 3
path: Classes/Service/RoundTrip.php
-
message: '#^Variable \$customFileContent in empty\(\) always exists and is not falsy\.$#'
identifier: empty.variable
count: 1
path: Classes/Service/RoundTrip.php
-
message: '#^Expression on left side of \?\? is not nullable\.$#'
identifier: nullCoalesce.expr
count: 2
path: Classes/Template/Components/Buttons/LinkButtonWithId.php
-
message: '#^Call to static method pluralize\(\) on an unknown class Sho_Inflect\.$#'
identifier: class.notFound
count: 1
path: Classes/Utility/Inflector.php
-
message: '#^Call to static method singularize\(\) on an unknown class Sho_Inflect\.$#'
identifier: class.notFound
count: 1
path: Classes/Utility/Inflector.php
-
message: '#^Call to function is_array\(\) with array will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Call to function is_array\(\) with mixed will always evaluate to false\.$#'
identifier: function.impossibleType
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Call to function is_bool\(\) with string will always evaluate to false\.$#'
identifier: function.impossibleType
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Call to function is_int\(\) with string will always evaluate to false\.$#'
identifier: function.impossibleType
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Call to function is_numeric\(\) with int will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 2
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Call to function is_string\(\) with string will always evaluate to true\.$#'
identifier: function.alreadyNarrowedType
count: 2
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Constant CR not found\.$#'
identifier: constant.notFound
count: 2
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Constant LF not found\.$#'
identifier: constant.notFound
count: 3
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Constant TAB not found\.$#'
identifier: constant.notFound
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Default value of the parameter \#2 \$indent \(false\) of method EBT\\ExtensionBuilder\\Utility\\SpycYAMLParser\:\:YAMLDump\(\) is incompatible with type int\.$#'
identifier: parameter.defaultValue
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Default value of the parameter \#2 \$indent \(false\) of method EBT\\ExtensionBuilder\\Utility\\SpycYAMLParser\:\:dump\(\) is incompatible with type int\.$#'
identifier: parameter.defaultValue
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Default value of the parameter \#3 \$wordwrap \(false\) of method EBT\\ExtensionBuilder\\Utility\\SpycYAMLParser\:\:YAMLDump\(\) is incompatible with type int\.$#'
identifier: parameter.defaultValue
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Default value of the parameter \#3 \$wordwrap \(false\) of method EBT\\ExtensionBuilder\\Utility\\SpycYAMLParser\:\:dump\(\) is incompatible with type int\.$#'
identifier: parameter.defaultValue
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^If condition is always false\.$#'
identifier: if.alwaysFalse
count: 2
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Loose comparison using \=\= between int\<1, max\> and 0 will always evaluate to false\.$#'
identifier: equal.alwaysFalse
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Method EBT\\ExtensionBuilder\\Utility\\SpycYAMLParser\:\:clearBiggerPathValues\(\) is unused\.$#'
identifier: method.unused
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Method EBT\\ExtensionBuilder\\Utility\\SpycYAMLParser\:\:isLiteral\(\) is unused\.$#'
identifier: method.unused
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Parameter \#2 \$characters of function trim expects string, int given\.$#'
identifier: argument.type
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Property EBT\\ExtensionBuilder\\Utility\\SpycYAMLParser\:\:\$_containsGroupAlias \(bool\) does not accept string\.$#'
identifier: assign.propertyType
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Property EBT\\ExtensionBuilder\\Utility\\SpycYAMLParser\:\:\$_containsGroupAnchor \(bool\) does not accept string\.$#'
identifier: assign.propertyType
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Result of && is always false\.$#'
identifier: booleanAnd.alwaysFalse
count: 2
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Result of or is always false\.$#'
identifier: logicalOr.alwaysFalse
count: 2
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Strict comparison using \=\=\= between int and false will always evaluate to false\.$#'
identifier: identical.alwaysFalse
count: 2
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Strict comparison using \=\=\= between string and array\{\} will always evaluate to false\.$#'
identifier: identical.alwaysFalse
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Unreachable statement \- code above always terminates\.$#'
identifier: deadCode.unreachable
count: 1
path: Classes/Utility/SpycYAMLParser.php
-
message: '#^Method EBT\\ExtensionBuilder\\ViewHelpers\\DomainObjectChecksViewHelper\:\:render\(\) should return string but returns false\.$#'
identifier: return.type
count: 3
path: Classes/ViewHelpers/DomainObjectChecksViewHelper.php
-
message: '#^Method EBT\\ExtensionBuilder\\ViewHelpers\\DomainObjectChecksViewHelper\:\:render\(\) should return string but returns true\.$#'
identifier: return.type
count: 3
path: Classes/ViewHelpers/DomainObjectChecksViewHelper.php
-
message: '#^Property EBT\\ExtensionBuilder\\ViewHelpers\\DomainObjectChecksViewHelper\:\:\$configurationManager is never read, only written\.$#'
identifier: property.onlyWritten
count: 1
path: Classes/ViewHelpers/DomainObjectChecksViewHelper.php
-
message: '#^Property EBT\\ExtensionBuilder\\ViewHelpers\\MappingViewHelper\:\:\$configurationManager is never read, only written\.$#'
identifier: property.onlyWritten
count: 1
path: Classes/ViewHelpers/MappingViewHelper.php