You are here

public function LessEngineLessphp::__construct in Less CSS Preprocessor 7.4

Same name and namespace in other branches
  1. 8 engines/engine.lessphp.inc \LessEngineLessphp::__construct()

Instantiates new instances of \lessc.

Parameters

string $input_file_path:

Overrides LessEngine::__construct

See also

\lessc

File

engines/engine.lessphp.inc, line 20

Class

LessEngineLessphp
Class \LessEngineLessphp

Code

public function __construct($input_file_path) {
  parent::__construct($input_file_path);
  $this->less_php_parser = new lessc();
}