File manager - Edit - /home/ferretapmx/public_html/plugins/system/helixultimate/vendor/scssphp/scssphp/src/Ast/Css/ModifiableCssComment.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\Ast\Css; use ScssPhp\ScssPhp\Visitor\ModifiableCssVisitor; use SourceSpan\FileSpan; /** * A modifiable version of {@see CssComment} for use in the evaluation step. * * @internal */ final class ModifiableCssComment extends ModifiableCssNode implements CssComment { private readonly string $text; private readonly FileSpan $span; public function __construct(string $text, FileSpan $span) { $this->text = $text; $this->span = $span; } public function getText(): string { return $this->text; } public function getSpan(): FileSpan { return $this->span; } public function isPreserved(): bool { return $this->text[2] === '!'; } public function accept(ModifiableCssVisitor $visitor) { return $visitor->visitCssComment($this); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings