<?php

class JsonMapperTest_ValueObject
{

    protected $value;

    public function __construct($value)
    {
        $this->value = $value;
    }
}
