Commit 72459cd0 authored by catch's avatar catch
Browse files

Issue #3248013 by daffie, longwave: [Symfony6] The...

Issue #3248013 by daffie, longwave: [Symfony6] The Drupal\Tests\views\Unit\Plugin\argument_default\QueryParameterTest fails for Symfony 5.4

(cherry picked from commit 94b94e7e)
parent 5939914c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ public function getArgument() {
    $current_request = $this->view->getRequest();

    if ($current_request->query->has($this->options['query_param'])) {
      $param = $current_request->query->get($this->options['query_param']);
      $param = $current_request->query->all()[$this->options['query_param']];
      if (is_array($param)) {
        $conjunction = ($this->options['multiple'] == 'and') ? ',' : '+';
        $param = implode($conjunction, $param);