aboutsummaryrefslogtreecommitdiff
path: root/src/SemanticScuttle/db/oracle.php
diff options
context:
space:
mode:
authorrhatto <rhatto@riseup.net>2023-08-30 20:09:49 -0300
committerGitHub <noreply@github.com>2023-08-30 20:09:49 -0300
commit7e5536c3f641567143b31fb9f54468184083ebce (patch)
tree6864121f35e2f2ba9fd06cc1fb096671ace5e6fa /src/SemanticScuttle/db/oracle.php
parent856e975127fff8f82b14f2886bb4ffb239541555 (diff)
parent8726754cb10f5c8db09f7012574450907af97cfa (diff)
downloadsemanticscuttle-7e5536c3f641567143b31fb9f54468184083ebce.tar.gz
semanticscuttle-7e5536c3f641567143b31fb9f54468184083ebce.tar.bz2
Merge pull request #2 from jasonmm/rector
Update code to work with modern PHP.
Diffstat (limited to 'src/SemanticScuttle/db/oracle.php')
-rw-r--r--src/SemanticScuttle/db/oracle.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SemanticScuttle/db/oracle.php b/src/SemanticScuttle/db/oracle.php
index 7ef10e5..8b983d3 100644
--- a/src/SemanticScuttle/db/oracle.php
+++ b/src/SemanticScuttle/db/oracle.php
@@ -34,7 +34,7 @@ class sql_db
//
// Constructor
//
- function sql_db($sqlserver, $sqluser, $sqlpassword, $database="", $persistency = true)
+ function __construct($sqlserver, $sqluser, $sqlpassword, $database="", $persistency = true)
{
$this->persistency = $persistency;
$this->user = $sqluser;
@@ -465,4 +465,4 @@ class sql_db
} // if ... define
-?> \ No newline at end of file
+?>