MiniAsset\Output\AssetCacher::read PHP 메소드

read() 공개 메소드

Get the cached result for a build target.
public read ( AssetTarget $target ) : string
$target MiniAsset\AssetTarget The target to get content for.
리턴 string
    public function read(AssetTarget $target)
    {
        $buildName = $this->buildFileName($target);
        return file_get_contents($this->path . $buildName);
    }