|
1548 | 1548 | * dump_destination?: scalar|null, // A stream URL where dumps should be written to. // Default: null |
1549 | 1549 | * theme?: "dark"|"light", // Changes the color of the dump() output when rendered directly on the templating. "dark" (default) or "light". // Default: "dark" |
1550 | 1550 | * } |
| 1551 | + * @psalm-type MakerConfig = array{ |
| 1552 | + * root_namespace?: scalar|null, // Default: "App" |
| 1553 | + * generate_final_classes?: bool, // Default: true |
| 1554 | + * generate_final_entities?: bool, // Default: false |
| 1555 | + * } |
1551 | 1556 | * @psalm-type WebpackEncoreConfig = array{ |
1552 | 1557 | * output_path: scalar|null, // The path where Encore is building the assets - i.e. Encore.setOutputPath() |
1553 | 1558 | * crossorigin?: false|"anonymous"|"use-credentials", // crossorigin value when Encore.enableIntegrityHashes() is used, can be false (default), anonymous or use-credentials // Default: false |
|
1672 | 1677 | * post_processors?: array<string, array<string, mixed>>, |
1673 | 1678 | * }, |
1674 | 1679 | * } |
1675 | | - * @psalm-type DamaDoctrineTestConfig = array{ |
1676 | | - * enable_static_connection?: mixed, // Default: true |
1677 | | - * enable_static_meta_data_cache?: bool, // Default: true |
1678 | | - * enable_static_query_cache?: bool, // Default: true |
1679 | | - * connection_keys?: list<mixed>, |
1680 | | - * } |
1681 | 1680 | * @psalm-type TwigExtraConfig = array{ |
1682 | 1681 | * cache?: bool|array{ |
1683 | 1682 | * enabled?: bool, // Default: false |
|
2373 | 2372 | * invalidate_on_env_change?: bool, // Default: true |
2374 | 2373 | * }, |
2375 | 2374 | * } |
| 2375 | + * @psalm-type JbtronicsTranslationEditorConfig = array{ |
| 2376 | + * translations_path?: scalar|null, // Default: "%translator.default_path%" |
| 2377 | + * format?: scalar|null, // Default: "xlf" |
| 2378 | + * xliff_version?: scalar|null, // Default: "2.0" |
| 2379 | + * use_intl_icu_format?: bool, // Default: false |
| 2380 | + * writer_options?: list<scalar|null>, |
| 2381 | + * } |
2376 | 2382 | * @psalm-type ApiPlatformConfig = array{ |
2377 | 2383 | * title?: scalar|null, // The title of the API. // Default: "" |
2378 | 2384 | * description?: scalar|null, // The description of the API. // Default: "" |
|
2628 | 2634 | * ...<mixed> |
2629 | 2635 | * }, |
2630 | 2636 | * } |
2631 | | - * @psalm-type MakerConfig = array{ |
2632 | | - * root_namespace?: scalar|null, // Default: "App" |
2633 | | - * generate_final_classes?: bool, // Default: true |
2634 | | - * generate_final_entities?: bool, // Default: false |
2635 | | - * } |
2636 | | - * @psalm-type JbtronicsTranslationEditorConfig = array{ |
2637 | | - * translations_path?: scalar|null, // Default: "%translator.default_path%" |
2638 | | - * format?: scalar|null, // Default: "xlf" |
2639 | | - * xliff_version?: scalar|null, // Default: "2.0" |
2640 | | - * use_intl_icu_format?: bool, // Default: false |
2641 | | - * writer_options?: list<scalar|null>, |
| 2637 | + * @psalm-type DamaDoctrineTestConfig = array{ |
| 2638 | + * enable_static_connection?: mixed, // Default: true |
| 2639 | + * enable_static_meta_data_cache?: bool, // Default: true |
| 2640 | + * enable_static_query_cache?: bool, // Default: true |
| 2641 | + * connection_keys?: list<mixed>, |
2642 | 2642 | * } |
2643 | 2643 | * @psalm-type ConfigType = array{ |
2644 | 2644 | * imports?: ImportsConfig, |
|
0 commit comments