for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace erasys\OpenApi;
/**
* Represents a raw value.
* This allows, for example exporting a null value, which is by default excluded when exporting to array.
*
* Not part of the OAS specification.
*/
class RawValue
{
* @var mixed
private $value;
* @param mixed $value
public function __construct($value)
$this->value = $value;
}
* @return mixed
public function getValue()
return $this->value;