Dumplie\Metadata\Infrastructure\InMemory\InMemoryStorage::typeExists PHP 메소드

typeExists() 개인적인 메소드

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