__construct() public method

public __construct ( string $path, string $filename, boolean $watch = false )
$path string
$filename string
$watch boolean
コード例 #1
0
ファイル: LessCompiler.php プロジェクト: clops/core
 /**
  * @param string $path
  * @param string $filename
  * @param bool $watch
  * @param string $cachePath
  */
 public function __construct($path, $filename, $watch, $cachePath)
 {
     parent::__construct($path, $filename, $watch);
     $this->cachePath = $cachePath;
 }
コード例 #2
0
ファイル: JsCompiler.php プロジェクト: clops/core
 /**
  * @param string $path
  * @param string $filename
  * @param bool $watch
  * @param Repository $cache
  */
 public function __construct($path, $filename, $watch = false, Repository $cache = null)
 {
     parent::__construct($path, $filename, $watch);
     $this->cache = $cache;
 }