17 lines
224 B
PHP
17 lines
224 B
PHP
<?php
|
|
|
|
class JsonMapperTest_ValueObject
|
|
{
|
|
|
|
protected $value;
|
|
|
|
public function __construct($value)
|
|
{
|
|
$this->value = $value;
|
|
}
|
|
|
|
public function getValue()
|
|
{
|
|
return $this->value;
|
|
}
|
|
}
|