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 :
Provider.php
<?php declare(strict_types=1); namespace Kreait\Firebase\Value; class Provider implements \JsonSerializable { public const ANONYMOUS = 'anonymous'; public const CUSTOM = 'custom'; public const FACEBOOK = 'facebook.com'; public const FIREBASE = 'firebase'; public const GITHUB = 'github.com'; public const GOOGLE = 'google.com'; public const PASSWORD = 'password'; public const PHONE = 'phone'; public const TWITTER = 'twitter.com'; /** @var string */ private $value; /** * @internal */ public function __construct(string $value) { $this->value = $value; } public function __toString(): string { 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