Skip to content

Commit db675e0

Browse files
committed
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.
1 parent 073f595 commit db675e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pgsql/pgsql.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2119,7 +2119,7 @@ function pg_socket_poll($socket, int $read, int $write, int $timeout = -1): int
21192119
/**
21202120
* @since 8.4
21212121
*/
2122-
function pg_set_chunked_rows_size(Pgsql\Connection $connection, int $size): bool {}
2122+
function pg_set_chunked_rows_size(PgSql\Connection $connection, int $size): bool {}
21232123
/**
21242124
* @since 8.4
21252125
*/

0 commit comments

Comments
 (0)