%PDF- %PDF-
Direktori : /home/q/g/b/qgbqkvz/www/wp-content/plugins/wp-scss/scssphp/src/Ast/Sass/Statement/ |
Current File : /home/q/g/b/qgbqkvz/www/wp-content/plugins/wp-scss/scssphp/src/Ast/Sass/Statement/LoudComment.php |
<?php /** * SCSSPHP * * @copyright 2012-2020 Leaf Corcoran * * @license http://opensource.org/licenses/MIT MIT * * @link http://scssphp.github.io/scssphp */ namespace ScssPhp\ScssPhp\Ast\Sass\Statement; use ScssPhp\ScssPhp\Ast\Sass\Interpolation; use ScssPhp\ScssPhp\Ast\Sass\Statement; use ScssPhp\ScssPhp\SourceSpan\FileSpan; use ScssPhp\ScssPhp\Visitor\StatementVisitor; /** * A loud CSS-style comment. * * @internal */ final class LoudComment implements Statement { /** * @var Interpolation * @readonly */ private $text; public function __construct(Interpolation $text) { $this->text = $text; } public function getText(): Interpolation { return $this->text; } public function getSpan(): FileSpan { return $this->text->getSpan(); } public function accept(StatementVisitor $visitor) { return $visitor->visitLoudComment($this); } public function __toString(): string { return (string) $this->text; } }