<?php

namespace Lightscale\LaralightAssets;

class StyleFile extends File
{
    public function toHtml(): string
    {
        $path = $this->getUrl();
        return "<link type=\"text/css\" rel=\"stylesheet\" href=\"{$path}\" />";
    }
}