<?php
namespace App\Domain\Field;
/**
* Drag & Drop Fieldtype
*/
final class DragDropType
{
protected $value = [];
function __construct()
{
//$this->value = $value;
}
public function set($value)
{
$this->value[] = $value;
}
public function value()
{
return $this->value;
}
}