diff options
author | Jason <jasonmm.github@gmail.com> | 2022-06-21 18:18:32 -0500 |
---|---|---|
committer | Jason <jasonmm.github@gmail.com> | 2022-06-21 18:18:37 -0500 |
commit | b43300fbcf92008ac1adc87c4b03776a9a4fb4e8 (patch) | |
tree | 21978beea7c1c044bb24bdc11f1cdc12393e2f3a /src/SemanticScuttle/db/postgres.php | |
parent | 856e975127fff8f82b14f2886bb4ffb239541555 (diff) | |
download | semanticscuttle-b43300fbcf92008ac1adc87c4b03776a9a4fb4e8.tar.gz semanticscuttle-b43300fbcf92008ac1adc87c4b03776a9a4fb4e8.tar.bz2 |
Use Rector to upgrade constructors.
Modern PHP versions do not recognize methods with the same name as the
class as being constructors. This commit upgrades the code so that
constructors are named `__construct`. The upgrade was done automatically
using Rector.
Diffstat (limited to 'src/SemanticScuttle/db/postgres.php')
-rw-r--r-- | src/SemanticScuttle/db/postgres.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/SemanticScuttle/db/postgres.php b/src/SemanticScuttle/db/postgres.php index b5bad20..2085359 100644 --- a/src/SemanticScuttle/db/postgres.php +++ b/src/SemanticScuttle/db/postgres.php @@ -58,7 +58,7 @@ class sql_db { $this->connect_string .= "host=$sqlserver "; } - + if ($port) { $this->connect_string .= "port=$port "; @@ -152,7 +152,7 @@ class sql_db } $this->query_result = ($cache_ttl && method_exists($cache, 'sql_load')) ? $cache->sql_load($query) : false; - + if (!$this->query_result) { $this->num_queries++; @@ -308,7 +308,7 @@ class sql_db } $result = @pg_fetch_array($query_id, NULL, PGSQL_ASSOC); - + if ($result) { $this->rownum[$query_id]++; @@ -477,7 +477,7 @@ class sql_db { $this->sql_transaction('rollback'); } - + trigger_error($message, E_USER_ERROR); } @@ -594,4 +594,4 @@ class sql_db } // if ... defined -?>
\ No newline at end of file +?> |