Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
die_coolen_jungs
our_own_cloud_project
Commits
9116303c
Commit
9116303c
authored
11 years ago
by
Thomas Müller
Browse files
Options
Downloads
Patches
Plain Diff
fixing typos
parent
e92abfd4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/allconfig.php
+4
-4
4 additions, 4 deletions
lib/allconfig.php
lib/public/iconfig.php
+4
-4
4 additions, 4 deletions
lib/public/iconfig.php
with
8 additions
and
8 deletions
lib/allconfig.php
+
4
−
4
View file @
9116303c
...
...
@@ -14,7 +14,7 @@ namespace OC;
*/
class
AllConfig
implements
\OCP\IConfig
{
/**
* Sets a new systemwide value
* Sets a new system
wide value
* @param string $key the key of the value, under which will be saved
* @param string $value the value that should be stored
* @todo need a use case for this
...
...
@@ -24,7 +24,7 @@ class AllConfig implements \OCP\IConfig {
// }
/**
* Looks up a systemwide defined value
* Looks up a system
wide defined value
* @param string $key the key of the value, under which it was saved
* @return string the saved value
*/
...
...
@@ -34,7 +34,7 @@ class AllConfig implements \OCP\IConfig {
/**
* Writes a new appwide value
* Writes a new app
wide value
* @param string $appName the appName that we want to store the value under
* @param string $key the key of the value, under which will be saved
* @param string $value the value that should be stored
...
...
@@ -44,7 +44,7 @@ class AllConfig implements \OCP\IConfig {
}
/**
* Looks up an appwide defined value
* Looks up an app
wide defined value
* @param string $appName the appName that we stored the value under
* @param string $key the key of the value, under which it was saved
* @return string the saved value
...
...
This diff is collapsed.
Click to expand it.
lib/public/iconfig.php
+
4
−
4
View file @
9116303c
...
...
@@ -12,7 +12,7 @@ namespace OCP;
*/
interface
IConfig
{
/**
* Sets a new systemwide value
* Sets a new system
wide value
* @param string $key the key of the value, under which will be saved
* @param string $value the value that should be stored
* @todo need a use case for this
...
...
@@ -20,7 +20,7 @@ interface IConfig {
// public function setSystemValue($key, $value);
/**
* Looks up a systemwide defined value
* Looks up a system
wide defined value
* @param string $key the key of the value, under which it was saved
* @return string the saved value
*/
...
...
@@ -28,14 +28,14 @@ interface IConfig {
/**
* Writes a new appwide value
* Writes a new app
wide value
* @param string $key the key of the value, under which will be saved
* @param string $value the value that should be stored
*/
public
function
setAppValue
(
$key
,
$value
,
$appName
=
null
);
/**
* Looks up an appwide defined value
* Looks up an app
wide defined value
* @param string $key the key of the value, under which it was saved
* @return string the saved value
*/
...
...
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