aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMatthias Larisch2020-06-04 14:20:27 +0200
committerMatthias Larisch2020-06-04 14:20:27 +0200
commit867777b98662410b054b2751f72a0750c4891bc1 (patch)
treee5f6ed2ba640159b29d700a58383d2836ce04f93 /lib
parentc4f79d3604fb05a2ea573cc46e4ee1827ea9e4cf (diff)
Fix PHP8 deprecation warning
Diffstat (limited to 'lib')
-rw-r--r--lib/less.php/Less.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/less.php/Less.php b/lib/less.php/Less.php
index 89a4877..3616cb4 100644
--- a/lib/less.php/Less.php
+++ b/lib/less.php/Less.php
@@ -8097,7 +8097,7 @@ class Less_Tree_Mixin_Call extends Less_Tree{
} else {
$defaultResult = $defTrue;
if( ($count[$defTrue] + $count[$defFalse]) > 1 ){
- throw new Exception( 'Ambiguous use of `default()` found when matching for `'. $this->format($args) + '`' );
+ throw new Exception( 'Ambiguous use of `default()` found when matching for `'. $this->format($args) . '`' );
}
}