MiniAsset\AssetTarget::outputDir PHP Method

outputDir() public method

public outputDir ( ) : string
return string
    public function outputDir()
    {
        return dirname($this->path);
    }

Usage Example

Beispiel #1
0
 /**
  * Get the output dir
  *
  * Used to locate outputs when determining freshness.
  *
  * @param \MiniAsset\AssetTarget $target
  * @return string The path
  */
 public function outputDir(AssetTarget $target)
 {
     return $target->outputDir();
 }