for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Fiv\Form\Element;
/**
* @author Ivan Shcherbak <[email protected]>
*/
class Password extends Input {
* @var array
protected $attributes = [
'type' => 'password',
];
* @return string
public function render() {
$this->attributes['value'] = null;
return parent::render();
}