1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<?php namespace Phalcon\Forms\Element { /** * Phalcon\Forms\Element\Numeric * * Component INPUT[type=number] for forms */ class Numeric extends \Phalcon\Forms\Element implements \Phalcon\Forms\ElementInterface { /** * Renders the element widget returning html * * @param array $attributes * @return string */ public function render($attributes=null){ } } }