Flarum\Asset\RevisionCompiler::__construct PHP Méthode

__construct() public méthode

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

Exemple #1
0
 /**
  * @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