Datenverzeichnis-Parameter und Dependency Injection für $dataDir hinzugefügt

This commit is contained in:
2026-03-27 14:24:02 +01:00
parent 790963976a
commit 804bcf9e7a

View File

@@ -7,12 +7,15 @@
# Put parameters here that don't need to change on each machine where the app is deployed
# https://symfony.com/doc/current/best_practices.html#use-parameters-for-application-configuration
parameters:
app.data_dir: '%kernel.project_dir%/var/data'
services:
# default configuration for services in *this* file
_defaults:
autowire: true # Automatically injects dependencies in your services.
autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
bind:
string $dataDir: '%app.data_dir%'
# makes classes in src/ available to be used as services
# this creates a service per class whose id is the fully-qualified class name