aboutsummaryrefslogtreecommitdiff
path: root/lib/less.php/Tree/RulesetCall.php
diff options
context:
space:
mode:
authorderchris2019-02-04 13:11:28 +0100
committerderchris2019-02-04 13:11:28 +0100
commitfd72b0f50a355006069c5a336441f08beb7d3c50 (patch)
tree771ae594586840cb7c7c4fdedeb15e2ca3cf2d2b /lib/less.php/Tree/RulesetCall.php
parent2ea11c4a04371adbc865678dd6eca12aefca0013 (diff)
Revert "update less.php to PHP 7.x compatible fork"
This reverts commit 7ad9f272a482802da2d43fe83841adbe9bcd8cb4.
Diffstat (limited to '')
-rw-r--r--lib/less.php/Tree/RulesetCall.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/less.php/Tree/RulesetCall.php b/lib/less.php/Tree/RulesetCall.php
deleted file mode 100644
index ed4c723..0000000
--- a/lib/less.php/Tree/RulesetCall.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-/**
- * RulesetCall
- *
- * @package Less
- * @subpackage tree
- */
-class Less_Tree_RulesetCall extends Less_Tree{
-
- public $variable;
- public $type = "RulesetCall";
-
- public function __construct($variable){
- $this->variable = $variable;
- }
-
- public function accept($visitor) {}
-
- public function compile( $env ){
- $variable = new Less_Tree_Variable($this->variable);
- $detachedRuleset = $variable->compile($env);
- return $detachedRuleset->callEval($env);
- }
-}
-