File manager - Edit - /home/ferretapmx/public_html/plugins/system/helixultimate/vendor/scssphp/scssphp/src/Importer/ImporterResult.php
Back
<?php /** * SCSSPHP * * @copyright 2012-2020 Leaf Corcoran * * @license http://opensource.org/licenses/MIT MIT * * @link http://scssphp.github.io/scssphp */ namespace ScssPhp\ScssPhp\Importer; use League\Uri\Contracts\UriInterface; use League\Uri\Uri; use ScssPhp\ScssPhp\Syntax; final class ImporterResult { private readonly string $contents; private readonly ?UriInterface $sourceMapUrl; private readonly Syntax $syntax; public function __construct(string $contents, Syntax $syntax, ?UriInterface $sourceMapUrl = null) { $this->contents = $contents; $this->syntax = $syntax; $this->sourceMapUrl = $sourceMapUrl; } public function getContents(): string { return $this->contents; } /** * An absolute, browser-accessible URL indicating the resolved location of * the imported stylesheet. * * This should be a `file:` URL if one is available, but an `http:` URL is * acceptable as well. If no URL is supplied, a `data:` URL is generated * automatically from {@see contents}. */ public function getSourceMapUrl(): UriInterface { return $this->sourceMapUrl ?? Uri::fromData($this->contents, '', 'charset=utf-8'); } /** * The syntax to use to parse the stylesheet. */ public function getSyntax(): Syntax { return $this->syntax; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings