Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
10a98f9f
Unverified
Commit
10a98f9f
authored
4 years ago
by
MichaIng
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Define getSystemValueBool/Int/String function default parameter with correct type
Signed-off-by:
MichaIng
<
micha@dietpi.com
>
parent
80222e6a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/private/AllConfig.php
+3
-3
3 additions, 3 deletions
lib/private/AllConfig.php
with
3 additions
and
3 deletions
lib/private/AllConfig.php
+
3
−
3
View file @
10a98f9f
...
...
@@ -130,7 +130,7 @@ class AllConfig implements \OCP\IConfig {
* Looks up a boolean system wide defined value
*
* @param string $key the key of the value, under which it was saved
* @param
mixed
$default the default value to be returned if the value isn't set
* @param
bool
$default the default value to be returned if the value isn't set
*
* @return bool
*
...
...
@@ -144,7 +144,7 @@ class AllConfig implements \OCP\IConfig {
* Looks up an integer system wide defined value
*
* @param string $key the key of the value, under which it was saved
* @param
mixed
$default the default value to be returned if the value isn't set
* @param
int
$default the default value to be returned if the value isn't set
*
* @return int
*
...
...
@@ -158,7 +158,7 @@ class AllConfig implements \OCP\IConfig {
* Looks up a string system wide defined value
*
* @param string $key the key of the value, under which it was saved
* @param
mixed
$default the default value to be returned if the value isn't set
* @param
string
$default the default value to be returned if the value isn't set
*
* @return string
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment