| Current Path : /home/rtorresani/www/vendor/magento/framework/Jwt/Jwe/Header/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/Jwt/Jwe/Header/CompressionAlgorithm.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\Jwt\Jwe\Header;
use Magento\Framework\Jwt\Jwe\JweHeaderParameterInterface;
/**
* "zip" header.
*/
class CompressionAlgorithm implements JweHeaderParameterInterface
{
/**
* @var string
*/
private $value;
/**
* @param string $value
*/
public function __construct(string $value)
{
$this->value = $value;
}
/**
* @inheritDoc
*/
public function getName(): string
{
return 'zip';
}
/**
* @inheritDoc
*/
public function getValue()
{
return $this->value;
}
/**
* @inheritDoc
*/
public function getClass(): ?int
{
return self::CLASS_REGISTERED;
}
}