Redaxscript\Head\Link::prependFile PHP Method

prependFile() public method

prepend link file
Since: 3.0.0
public prependFile ( string $reference = null ) : Link
$reference string
return Link
    public function prependFile($reference = null)
    {
        $this->prepend(['href' => $reference, 'rel' => 'stylesheet']);
        return $this;
    }