Skip to content

Commit

Permalink
Fix typo in namespace casing for PgSql\Connection
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
isfedorov committed Dec 23, 2024
1 parent 073f595 commit db675e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pgsql/pgsql.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit db675e0

Please sign in to comment.