Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
die_coolen_jungs
our_own_cloud_project
Commits
0b9dffa8
Commit
0b9dffa8
authored
Nov 17, 2014
by
Lukas Reschke
Browse files
Make declaration compatible
Fixes #12236
parent
af7688ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/private/db/oracleconnection.php
View file @
0b9dffa8
...
...
@@ -20,7 +20,7 @@ class OracleConnection extends Connection {
return
$return
;
}
/*
/*
*
* {@inheritDoc}
*/
public
function
insert
(
$tableName
,
array
$data
,
array
$types
=
array
())
{
...
...
@@ -29,7 +29,7 @@ class OracleConnection extends Connection {
return
parent
::
insert
(
$tableName
,
$data
,
$types
);
}
/*
/*
*
* {@inheritDoc}
*/
public
function
update
(
$tableName
,
array
$data
,
array
$identifier
,
array
$types
=
array
())
{
...
...
@@ -39,11 +39,11 @@ class OracleConnection extends Connection {
return
parent
::
update
(
$tableName
,
$data
,
$identifier
,
$types
);
}
/*
/*
*
* {@inheritDoc}
*/
public
function
delete
(
$table
Name
,
array
$identifier
)
{
$tableName
=
$this
->
quoteIdentifier
(
$table
Name
);
public
function
delete
(
$table
Expression
,
array
$identifier
,
array
$types
=
array
()
)
{
$tableName
=
$this
->
quoteIdentifier
(
$table
Expression
);
$identifier
=
$this
->
quoteKeys
(
$identifier
);
return
parent
::
delete
(
$tableName
,
$identifier
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment