Eric Dinchev

Results 1 issues of Eric Dinchev

The services.yml files doesn't allow key'd arguments in the latest version of symfony (3.3) Example: **Broken:** `services: ras_flash_alert.alert_reporter: class: Ras\Bundle\FlashAlertBundle\Model\AlertReporter arguments: alertManager: "@ras_flash_alert.alert_manager"` **Fixed** `services: ras_flash_alert.alert_reporter: class: Ras\Bundle\FlashAlertBundle\Model\AlertReporter arguments: ["@ras_flash_alert.alert_manager"]`...