Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp-module-perun
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp-module-perun
Merge requests
!176
fix: fix bad return type in DatabaseCommand
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix: fix bad return type in DatabaseCommand
github/fork/vyskocilpavel/fix_return_type
into
master
Overview
1
Commits
1
Pipelines
0
Changes
1
Merged
Pavel Vyskočil
requested to merge
github/fork/vyskocilpavel/fix_return_type
into
master
3 years ago
Overview
1
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
95328bab
1 commit,
2 years ago
1 file
+
5
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
lib/databaseCommand/DatabaseCommand.php
+
5
−
1
Options
@@ -28,6 +28,10 @@ abstract class DatabaseCommand
@@ -28,6 +28,10 @@ abstract class DatabaseCommand
protected
function
write
(
$query
,
$params
):
bool
protected
function
write
(
$query
,
$params
):
bool
{
{
return
$this
->
conn
->
write
(
$query
,
$params
);
$response
=
$this
->
conn
->
write
(
$query
,
$params
);
if
(
is_int
(
$response
))
{
return
true
;
}
return
false
;
}
}
}
}
Loading