<?php

namespace Lightscale\LaralightAssets;

class StyleFile extends File
{
    public function __construct(string $path)
    {
        $this->setPath($path);
    }

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