for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Ivan Shcherbak <[email protected]>
*/
namespace Fiv\Form\Element;
* Class Submit
* Generate <input type="submit" /> element
*
* @package Fiv\Form
class Submit extends \Fiv\Form\Element\Input {
* @var array
protected $attributes = [
'type' => 'submit',
];
}