__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Lcobucci\JWT\Token;
use function array_key_exists;
final class DataSet
{
/** @var array<string, mixed> */
private $data;
/** @var string */
private $encoded;
/**
* @param array<string, mixed> $data
* @param string $encoded
*/
public function __construct(array $data, $encoded)
{
$this->data = $data;
$this->encoded = $encoded;
}
/**
* @param string $name
* @param mixed|null $default
*
* @return mixed|null
*/
public function get($name, $default = null)
{
return $this->has($name) ? $this->data[$name] : $default;
}
/**
* @param string $name
*
* @return bool
*/
public function has($name)
{
return array_key_exists($name, $this->data);
}
/** @return array<string, mixed> */
public function all()
{
return $this->data;
}
/** @return string */
public function toString()
{
return $this->encoded;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| DataSet.php | File | 1.02 KB | 0664 |
|
| InvalidTokenStructure.php | File | 747 B | 0664 |
|
| Plain.php | File | 167 B | 0664 |
|
| RegisteredClaimGiven.php | File | 587 B | 0664 |
|
| RegisteredClaims.php | File | 1.75 KB | 0664 |
|
| Signature.php | File | 204 B | 0664 |
|
| UnsupportedHeaderFound.php | File | 326 B | 0664 |
|