aboutsummaryrefslogtreecommitdiff
path: root/src/SemanticScuttle/db/mssql.php
diff options
context:
space:
mode:
authorJason <jasonmm.github@gmail.com>2022-06-21 18:18:32 -0500
committerJason <jasonmm.github@gmail.com>2022-06-21 18:18:37 -0500
commitb43300fbcf92008ac1adc87c4b03776a9a4fb4e8 (patch)
tree21978beea7c1c044bb24bdc11f1cdc12393e2f3a /src/SemanticScuttle/db/mssql.php
parent856e975127fff8f82b14f2886bb4ffb239541555 (diff)
downloadsemanticscuttle-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/mssql.php')
-rw-r--r--src/SemanticScuttle/db/mssql.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/SemanticScuttle/db/mssql.php b/src/SemanticScuttle/db/mssql.php
index 2b17b9e..8358d27 100644
--- a/src/SemanticScuttle/db/mssql.php
+++ b/src/SemanticScuttle/db/mssql.php
@@ -134,7 +134,7 @@ class sql_db
if (!$this->query_result)
{
$this->num_queries++;
-
+
if (($this->query_result = @mssql_query($query, $this->db_connect_id)) === false)
{
$this->sql_error($query);
@@ -285,7 +285,7 @@ class sql_db
}
$row = @mssql_fetch_array($query_id, MSSQL_ASSOC);
-
+
if ($row)
{
foreach ($row as $key => $value)
@@ -431,7 +431,7 @@ class sql_db
{
$this->sql_transaction('rollback');
}
-
+
trigger_error($message, E_USER_ERROR);
}
@@ -548,4 +548,4 @@ class sql_db
} // if ... define
-?> \ No newline at end of file
+?>