Dumplie\Metadata\Infrastructure\InMemory\InMemoryStorage::typeExists PHP Method

typeExists() private method

private typeExists ( string $schema, string $typeName ) : boolean
$schema string
$typeName string
return boolean
    private function typeExists(string $schema, string $typeName) : bool
    {
        if (!$this->schemaExists($schema)) {
            return false;
        }
        return array_key_exists($typeName, $this->storage[$schema]);
    }