getType() public method

Get form element object type.
public getType ( ) : string
return string
Exemplo n.º 1
0
 public function testGetType()
 {
     $e = new Element('text', 'email');
     $this->assertEquals('text', $e->getType());
 }