for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Formularium;
/**
* Allowed arguments
*/
final class ExtradataParameter
{
* @var string
public $name;
* @var mixed
public $value;
public function __construct(string $name, string $value)
$this->name = $name;
$this->value = $value;
}