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

normalizeIdentifier() private method

Uppercases the given identifier if it is not quoted by intention to reflect Oracle's internal auto uppercasing strategy of unquoted identifiers.
private normalizeIdentifier ( string $name ) : Doctrine\DBAL\Schema\Identifier
$name string The identifier to normalize.
return Doctrine\DBAL\Schema\Identifier The normalized identifier.
    private function normalizeIdentifier($name)
    {
        $identifier = new Identifier($name);
        return $identifier->isQuoted() ? $identifier : new Identifier(strtoupper($name));
    }
OraclePlatform