Neos\Flow\Persistence\Doctrine\Service::resolveTableName PHP Method

resolveTableName() private method

Resolve a table name from its fully qualified name. The $name argument comes from Doctrine\DBAL\Schema\Table#getName which can sometimes return a namespaced name with the form {namespace}.{tableName}. This extracts the table name from that.
private resolveTableName ( string $name ) : string
$name string
return string
    private function resolveTableName($name)
    {
        $pos = strpos($name, '.');
        return false === $pos ? $name : substr($name, $pos + 1);
    }