1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?php
namespace Tev\Field\Model;
/**
* Basic field entity.
*
* A basic field has a simple primitive value.
*/
class BasicField extends AbstractField
{
/**
* Get the value of this field.
*
* Value will be a primitive type.
*
* @return mixed
*/
public function getValue()
{
return $this->base['value'];
}
}