<?php
/**
* @see https://github.com/laminas/laminas-form for the canonical source repository
* @copyright https://github.com/laminas/laminas-form/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-form/blob/master/LICENSE.md New BSD License
*/
namespace Laminas\Form\Element;
use Laminas\Form\Element;
class Image extends Element
{
/**
* Seed attributes
*
* @var array
*/
protected $attributes = [
'type' => 'image',
];
}
-
root authoreda0a3ef35