for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Quantum PHP Framework
*
* An open source software development framework for PHP
* @package Quantum
* @author Arman Ag. <[email protected]>
* @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org)
* @link http://quantum.softberg.org/
* @since 2.9.7
*/
namespace Quantum\View;
* Class RawParam
* @package Quantum\View
class RawParam
{
* @var mixed
private $value;
* @param mixed $value
public function __construct($value)
$this->value = $value;
}
* Gets the raw value.
* @return mixed
public function getValue()
return $this->value;