liip / LiipMonitorBundle

Integrates the LiipMonitor library into Symfony
http://liip.ch
467 stars 103 forks source link

Amended reporters to no longer throw non-scalar value within symfony6 #279

Closed Wordlesschunk closed 1 year ago

Wordlesschunk commented 1 year ago

Currently when trying to add a reporter within the config in symfony6 I was dealt with the error 'Input value "reporters" contains a non-scalar value.' I found that changing $reporters = $request->query->get('reporters') ?? []; to $reporters = $request->query->all('reporters') ?? []; resolved this issue.

kbond commented 1 year ago

Thanks!