Jackalope\Transport\DoctrineDBAL\Client::cleanIdentifierCache PHP Method

cleanIdentifierCache() private method

Clean all identifiers under path $root.
private cleanIdentifierCache ( string $root )
$root string Path to the root node to be cleared
    private function cleanIdentifierCache($root)
    {
        unset($this->nodeIdentifiers[$root]);
        foreach (array_keys($this->nodeIdentifiers) as $path) {
            if (strpos($path, "{$root}/") === 0) {
                unset($this->nodeIdentifiers[$path]);
            }
        }
    }