Goetas\Xsd\XsdToPhp\Naming\ShortNamingStrategy::getTypeName PHP Method

getTypeName() public method

public getTypeName ( GoetasWebservices\XML\XSDReader\Schema\Type\Type $type )
$type GoetasWebservices\XML\XSDReader\Schema\Type\Type
    public function getTypeName(Type $type)
    {
        $name = $this->classify($type->getName());
        if ($name && substr($name, -4) !== 'Type') {
            $name .= "Type";
        }
        return $name;
    }