File manager - Edit - /home/ferretapmx/public_html/plugins/system/helixultimate/vendor/scssphp/scssphp/src/Ast/Css/CssValue.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\Ast\AstNode; use ScssPhp\ScssPhp\Ast\Selector\Combinator; use ScssPhp\ScssPhp\Util\Equatable; use ScssPhp\ScssPhp\Util\EquatableUtil; use SourceSpan\FileSpan; /** * A value in a plain CSS tree. * * This is used to associate a span with a value that doesn't otherwise track * its span. It has value equality semantics. * * @template-covariant T of string|\Stringable|array<string|\Stringable>|Combinator|null * * @internal */ final class CssValue implements AstNode, Equatable { /** * @var T */ private readonly mixed $value; private readonly FileSpan $span; /** * @param T $value */ public function __construct(mixed $value, FileSpan $span) { $this->value = $value; $this->span = $span; } /** * @return T */ public function getValue(): mixed { return $this->value; } public function getSpan(): FileSpan { return $this->span; } public function equals(object $other): bool { return $other instanceof CssValue && EquatableUtil::equals($this->value, $other->value); } public function __toString(): string { if ($this->value instanceof Combinator) { return $this->value->getText(); } if (\is_array($this->value)) { return implode($this->value); } return (string) $this->value; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings