for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LE_ACME2\Response\Authorization\Struct;
class Identifier {
public $type;
public $value;
public function __construct(string $type, string $value) {
$this->type = $type;
$this->value = $value;
}