for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Khusseini\PimcoreRadBrickBundle;
class RenderArgument
{
/**
* @var string
*/
private $type;
private $name;
* @var mixed
private $value;
* @param mixed $value
public function __construct(
string $type,
string $name,
$value = null
) {
$this->type = $type;
$this->name = $name;
$this->value = $value;
}
public function getType(): string
return $this->type;
public function getName(): string
return $this->name;
* @return mixed
public function getValue()
return $this->value;