You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'preferLinkOverUsesInTests' => true, // Prefer `@link` annotations over `@uses` in test files, prevents PHPUnit/Rector to replace them with attributes.
36
+
// Additional test class type => regex patterns for TestClassAnnotatorTask, merged onto the built-in Controller/Command patterns. Default [].
37
+
'testClassPatterns' => [],
34
38
// Custom Entity field type mapping
35
39
'typeMap' => [],
40
+
// Per-type override map for nullable column annotations: set `'someType' => false` to suppress the `|null` suffix. Default [].
41
+
'nullableMap' => [],
36
42
// Default View class to use
37
43
'viewClass' => null,
38
44
// Plugins to include for View annotations
@@ -41,6 +47,10 @@
41
47
'preemptive' => false,
42
48
// Annotator task customization
43
49
'annotators' => [],
50
+
// Extra class annotator tasks (FQCNs implementing ClassAnnotatorTaskInterface), merged with the built-in defaults; prefix a value with `-` to exclude a default. Default [].
51
+
'classAnnotatorTasks' => [],
52
+
// Extra callback annotator tasks (FQCNs implementing CallbackAnnotatorTaskInterface), merged with the built-in defaults. Default [].
53
+
'callbackAnnotatorTasks' => [],
44
54
// For meta file generator
45
55
'generatorTasks' => [],
46
56
// A regex pattern - for Migrations plugin DatabaseTableTask generator task
0 commit comments