File manager - Edit - /home/ferretapmx/public_html/plugins/system/helixultimate/vendor/scssphp/scssphp/src/Value/SassMixin.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; use ScssPhp\ScssPhp\SassCallable\SassCallable; use ScssPhp\ScssPhp\Util\EquatableUtil; use ScssPhp\ScssPhp\Visitor\ValueVisitor; /** * A SassScript mixin reference. * * A mixin reference captures a mixin from the local environment so that * it may be passed between modules. */ final class SassMixin extends Value { private readonly SassCallable $callable; /** * @internal */ public function __construct(SassCallable $callable) { $this->callable = $callable; } /** * @internal */ public function getCallable(): SassCallable { return $this->callable; } /** * @internal */ public function accept(ValueVisitor $visitor) { return $visitor->visitMixin($this); } public function assertMixin(?string $name = null): SassMixin { return $this; } public function equals(object $other): bool { return $other instanceof SassMixin && EquatableUtil::equals($this->callable, $other->callable); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings