From 44c7658d9bd91265e562100186d98f1ff719f76c Mon Sep 17 00:00:00 2001 From: gtbu <30436307+gtbu@users.noreply.github.com> Date: Sat, 8 Apr 2023 12:20:53 +0200 Subject: [PATCH] ${var} deprecated line 3180 - 3187 --- include/thirdparty/ScssPhp/ScssPhp/Compiler.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/thirdparty/ScssPhp/ScssPhp/Compiler.php b/include/thirdparty/ScssPhp/ScssPhp/Compiler.php index c7c449a..7335bcb 100644 --- a/include/thirdparty/ScssPhp/ScssPhp/Compiler.php +++ b/include/thirdparty/ScssPhp/ScssPhp/Compiler.php @@ -3177,14 +3177,14 @@ class Compiler // 1. op[op name][left type][right type] // 2. op[left type][right type] (passing the op as first arg // 3. op[op name] - $fn = "op${ucOpName}${ucLType}${ucRType}"; + $fn = "op{$ucOpName}{$ucLType}{$ucRType}"; if ( \is_callable([$this, $fn]) || - (($fn = "op${ucLType}${ucRType}") && + (($fn = "op{$ucLType}{$ucRType}") && \is_callable([$this, $fn]) && $passOp = true) || - (($fn = "op${ucOpName}") && + (($fn = "op{$ucOpName}") && \is_callable([$this, $fn]) && $genOp = true) ) {