From eb5e8d5dbd1ae4428776235f742aff221ea80629 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Tue, 14 Jan 2020 11:13:27 +0000 Subject: [PATCH] Issue #3104420 by peterkokot, mondrake: PHP 7.4 Deprecated curly brace syntax for accessing array elements --- core/modules/rest/src/RequestHandler.php | 2 +- core/modules/search/src/SearchQuery.php | 2 +- core/modules/views/src/Plugin/views/filter/StringFilter.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/modules/rest/src/RequestHandler.php b/core/modules/rest/src/RequestHandler.php index bc93538c498c..e1c424aa7c67 100644 --- a/core/modules/rest/src/RequestHandler.php +++ b/core/modules/rest/src/RequestHandler.php @@ -336,7 +336,7 @@ protected function getLegacyParameters(RouteMatchInterface $route_match, $unseri $parameters = []; // Filter out all internal parameters starting with "_". foreach ($route_parameters as $key => $parameter) { - if ($key{0} !== '_') { + if (substr((string) $key, 0, 1) !== '_') { $parameters[] = $parameter; } } diff --git a/core/modules/search/src/SearchQuery.php b/core/modules/search/src/SearchQuery.php index 9e47cf1a4263..6e342ca202c1 100644 --- a/core/modules/search/src/SearchQuery.php +++ b/core/modules/search/src/SearchQuery.php @@ -246,7 +246,7 @@ protected function parseSearchExpression() { // Strip off phrase quotes. $phrase = FALSE; - if ($match[2]{0} == '"') { + if ($match[2][0] == '"') { $match[2] = substr($match[2], 1, -1); $phrase = TRUE; $this->simple = FALSE; diff --git a/core/modules/views/src/Plugin/views/filter/StringFilter.php b/core/modules/views/src/Plugin/views/filter/StringFilter.php index 47adcdbcdd09..229eb907332f 100644 --- a/core/modules/views/src/Plugin/views/filter/StringFilter.php +++ b/core/modules/views/src/Plugin/views/filter/StringFilter.php @@ -341,7 +341,7 @@ protected function opContainsWord($field) { foreach ($matches as $match) { $phrase = FALSE; // Strip off phrase quotes - if ($match[2]{0} == '"') { + if ($match[2][0] == '"') { $match[2] = substr($match[2], 1, -1); $phrase = TRUE; } -- GitLab