Flarum\Asset\RevisionCompiler::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( string $path, string $filename, boolean $watch = false )
$path string
$filename string
$watch boolean
    public function __construct($path, $filename, $watch = false)
    {
        $this->path = $path;
        $this->filename = $filename;
        $this->watch = $watch;
    }

Usage Example

예제 #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;
 }
All Usage Examples Of Flarum\Asset\RevisionCompiler::__construct