| 1 | <?php |
||
| 5 | class Field extends Partial implements FieldInterface |
||
| 6 | { |
||
| 7 | protected $optional = ['title', 'value', 'short']; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Constructor. |
||
| 11 | * |
||
| 12 | * @param string $title |
||
| 13 | * @param string $value |
||
| 14 | * @param bool $isShort |
||
| 15 | */ |
||
| 16 | 8 | public function __construct($title = null, $value = null, $isShort = null) |
|
| 20 | |||
| 21 | /** |
||
| 22 | * @return bool |
||
| 23 | */ |
||
| 24 | 2 | public function isShort() |
|
| 28 | } |
||
| 29 |