Doctrine\DBAL\Platforms\OraclePlatform::getAutoincrementIdentifierName PHP Method

getAutoincrementIdentifierName() private method

Quotes the autoincrement primary key identifier name if the given table name is quoted by intention.
private getAutoincrementIdentifierName ( Doctrine\DBAL\Schema\Identifier $table ) : string
$table Doctrine\DBAL\Schema\Identifier The table identifier to return the autoincrement primary key identifier name for.
return string
    private function getAutoincrementIdentifierName(Identifier $table)
    {
        $identifierName = $table->getName() . '_AI_PK';
        return $table->isQuoted() ? $this->quoteSingleIdentifier($identifierName) : $identifierName;
    }
OraclePlatform