Dumplie\Metadata\Schema::get PHP Method

get() public method

public get ( string $typeName ) : TypeSchema
$typeName string
return Dumplie\Metadata\Schema\TypeSchema
    public function get(string $typeName) : TypeSchema
    {
        if (!array_key_exists($typeName, $this->types)) {
            throw NotFoundException::model($typeName);
        }
        return $this->types[$typeName];
    }