From 6fbe2a0e0e8e94278a1c54665cd55b2c79711373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=BCrth?= Date: Mon, 25 Jun 2018 18:16:37 +0200 Subject: [PATCH] Fix backtick --- src/Core/Configure/Engine/PhpConfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Configure/Engine/PhpConfig.php b/src/Core/Configure/Engine/PhpConfig.php index ec572ebff88..ea336fe5537 100644 --- a/src/Core/Configure/Engine/PhpConfig.php +++ b/src/Core/Configure/Engine/PhpConfig.php @@ -93,7 +93,7 @@ public function read($key) if (!isset($config)) { throw new Exception(sprintf('Config file "%s" did not return an array', $key . '.php')); } - deprecationWarning('PHP configuration files should not set `$config. Instead return an array.'); + deprecationWarning('PHP configuration files should not set `$config`. Instead return an array.'); return $config; }