Pagekit\View\Asset\FileAsset::getContent PHP Method

getContent() public method

public getContent ( )
    public function getContent()
    {
        if ($this->content === null and $path = $this->getPath()) {
            $this->content = file_get_contents($path);
        }
        return $this->content;
    }