for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* The MIT License (MIT)
*
* Copyright (c) 2018 Spomky-Labs
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace U2FAuthentication\Fido2;
class AuthenticationExtensionsClient
{
/**
* @var string
private $name;
* @var mixed
private $value;
* AuthenticationExtensionsClient constructor.
* @param string $name
* @param mixed $value
public function __construct(string $name, $value)
$this->name = $name;
$this->value = $value;
}
* @return string
public function getName(): string
return $this->name;
* @return mixed
public function getValue()
return $this->value;