File manager - Edit - /home/ferretapmx/public_html/plugins/system/helixultimate/vendor/scssphp/scssphp/src/Value/SassNull.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\Visitor\ValueVisitor; /** * The SassScript `null` value. */ final class SassNull extends Value { private static SassNull $instance; public static function create(): SassNull { return self::$instance ??= new self(); } private function __construct() { } public function isTruthy(): bool { return false; } public function isBlank(): bool { return true; } public function realNull(): ?Value { return null; } public function accept(ValueVisitor $visitor) { return $visitor->visitNull(); } public function equals(object $other): bool { return $other instanceof SassNull; } public function unaryNot(): Value { return SassBoolean::create(true); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings