* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\VarDumper\Cloner; /** * @author Nicolas Grekas */ class Data { private $data; /** * @param array $data A array as returned by ClonerInterface::cloneVar(). */ public function __construct(array $data) { $this->data = $data; } public function getRawData() { return $this->data; } }