for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MadWizard\WebAuthn\Extension\Generic;
use MadWizard\WebAuthn\Extension\AbstractExtensionOutput;
use MadWizard\WebAuthn\Extension\ExtensionResponseInterface;
class GenericExtensionOutput extends AbstractExtensionOutput
{
/**
* @var ExtensionResponseInterface
*/
private $response;
public function __construct(ExtensionResponseInterface $response)
parent::__construct($response->getIdentifier());
$this->response = $response;
}
public function getResponse(): ExtensionResponseInterface
return $this->response;