Remove the use of unavailable property `$this->lessc->importDisabled`

The functionality to set import to disabled is removed in `lessc`. Hence the code where this
property is used has been removed from `LessCompiler`.
This commit is contained in:
raviks789 2023-07-10 12:36:06 +02:00
parent 8e3c456327
commit bd0fb8c154
1 changed files with 0 additions and 2 deletions

View File

@ -62,8 +62,6 @@ class LessCompiler
public function __construct()
{
$this->lessc = new LessParser();
// Discourage usage of import because we're caching based on an explicit list of LESS files to compile
$this->lessc->importDisabled = true;
}
/**