From db675e059f57071e8209c99075128b92d8a727e7 Mon Sep 17 00:00:00 2001 From: Ivan Fedorov Date: Mon, 23 Dec 2024 11:23:15 +0000 Subject: [PATCH] Fix typo in namespace casing for PgSql\Connection Corrected the capitalization of the "PgSql" namespace in the `pg_set_chunked_rows_size` function definition. Ensures consistency with PHP's standard naming conventions and avoids potential issues with autoloading or referencing. --- pgsql/pgsql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgsql/pgsql.php b/pgsql/pgsql.php index e26d8ee03..6923806c9 100644 --- a/pgsql/pgsql.php +++ b/pgsql/pgsql.php @@ -2119,7 +2119,7 @@ function pg_socket_poll($socket, int $read, int $write, int $timeout = -1): int /** * @since 8.4 */ -function pg_set_chunked_rows_size(Pgsql\Connection $connection, int $size): bool {} +function pg_set_chunked_rows_size(PgSql\Connection $connection, int $size): bool {} /** * @since 8.4 */