File manager - Edit - /home/ferretapmx/public_html/plugins/system/helixultimate/vendor/scssphp/scssphp/src/Value/SassArgumentList.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\Value; /** * A SassScript argument list. * * An argument list comes from a rest argument. It's distinct from a normal * {@see SassList} in that it may contain a keyword map as well as the positional * arguments. */ final class SassArgumentList extends SassList { /** * @var array<string, Value> */ private readonly array $keywords; private bool $keywordAccessed = false; /** * SassArgumentList constructor. * * @param list<Value> $contents * @param array<string, Value> $keywords */ public function __construct(array $contents, array $keywords, ListSeparator $separator) { parent::__construct($contents, $separator); $this->keywords = $keywords; } /** * @return array<string, Value> */ public function getKeywords(): array { $this->keywordAccessed = true; return $this->keywords; } /** * @internal */ public function wereKeywordAccessed(): bool { return $this->keywordAccessed; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings