Hackzilla\PasswordGenerator\Model\Option\StringOption::getType PHP Method

getType() public method

public getType ( )
    public function getType()
    {
        return self::TYPE_STRING;
    }

Usage Example

 public function testType()
 {
     $option = new StringOption();
     $this->assertEquals(StringOption::TYPE_STRING, $option->getType());
 }