container = $container; } protected function getTable($tableName, $unEscaped = false) { $table = $this->container->getParameter('database_table_prefix') . $tableName; if (self::UN_ESCAPED_TABLE === $unEscaped) { return $table; } // escape table name is handled using " on postgresql if ('postgresql' === $this->connection->getDatabasePlatform()->getName()) { return '"' . $table . '"'; } // return escaped table return '`' . $table . '`'; } }