Skip to content

Commit 2cc765e

Browse files
committed
Document missing configuration keys in config/app.example.php
1 parent 71bd8b2 commit 2cc765e

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

config/app.example.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,15 @@
3030
'autoCollect' => true,
3131
// Can be strings or `/regex/` (e.g. `'/^\_.+$/i'` for underscore prefixed variables)
3232
'autoCollectBlacklist' => [],
33+
// Class used to extract variables from templates (must extend the default); FQCN string. Defaults to IdeHelper\Annotator\Template\VariableExtractor.
34+
'variableExtractor' => \IdeHelper\Annotator\Template\VariableExtractor::class,
3335
'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' => [],
3438
// Custom Entity field type mapping
3539
'typeMap' => [],
40+
// Per-type override map for nullable column annotations: set `'someType' => false` to suppress the `|null` suffix. Default [].
41+
'nullableMap' => [],
3642
// Default View class to use
3743
'viewClass' => null,
3844
// Plugins to include for View annotations
@@ -41,6 +47,10 @@
4147
'preemptive' => false,
4248
// Annotator task customization
4349
'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' => [],
4454
// For meta file generator
4555
'generatorTasks' => [],
4656
// A regex pattern - for Migrations plugin DatabaseTableTask generator task

0 commit comments

Comments
 (0)