File manager - Edit - /home/ferretapmx/public_html/plugins/system/helixultimate/vendor/scssphp/scssphp/src/Ast/Css/CssDeclaration.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\StackTrace\Trace; use ScssPhp\ScssPhp\Value\Value; use SourceSpan\FileSpan; /** * A plain CSS declaration (that is, a `name: value` pair). * * @internal */ interface CssDeclaration extends CssNode { /** * The name of this declaration. * * @return CssValue<string> */ public function getName(): CssValue; /** * The value of this declaration. * * @return CssValue<Value> */ public function getValue(): CssValue; /** * A list of style rules that appeared before this declaration in the Sass * input but after it in the CSS output. * * These are used to emit mixed declaration deprecation warnings during * serialization, so we can check based on specificity whether the warnings * are really necessary without worrying about `@extend` potentially changing * things up. * * @return list<CssStyleRule> */ public function getInterleavedRules(): array; /** * The stack trace indicating where this node was created. * * This is used to emit interleaved declaration warnings, and only needs to be set if * {@see getInterleavedRules} isn't empty. */ public function getTrace(): ?Trace; /** * The span for {@see getValue} that should be emitted to the source map. * * When the declaration's expression is just a variable, this is the span * where that variable was declared whereas `$this->getValue()->getSpan()` is the span where * the variable was used. Otherwise, this is identical to `$this->getValue()->getSpan()`. */ public function getValueSpanForMap(): FileSpan; /** * Returns whether this is a CSS Custom Property declaration. */ public function isCustomProperty(): bool; /** * Whether this was originally parsed as a custom property declaration, as * opposed to using something like `#{--foo}: ...` to cause it to be parsed * as a normal Sass declaration. * * If this is `true`, {@see isCustomProperty} will also be `true` and {@see getValue} will * contain a {@see SassString}. */ public function isParsedAsCustomProperty(): bool; }
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings