diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-04-21 09:35:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-21 09:35:01 +0200 |
commit | e9b00f84b85e97283b83cf951f9bd262e627ae9a (patch) | |
tree | bcc89a56e67397461a1afd54e0836315fd06e08a /lib/public/Defaults.php | |
parent | c4bd01456b7fc8e531af1e8cc37dbff4f1ca8578 (diff) | |
parent | 73b6cd1061480078ec252c1e5e1d97ac48ea892a (diff) | |
download | nextcloud-server-e9b00f84b85e97283b83cf951f9bd262e627ae9a.tar.gz nextcloud-server-e9b00f84b85e97283b83cf951f9bd262e627ae9a.zip |
Merge pull request #4406 from nextcloud/fix-unit-test-problems
Fix unit test problems
Diffstat (limited to 'lib/public/Defaults.php')
-rw-r--r-- | lib/public/Defaults.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Defaults.php b/lib/public/Defaults.php index 591da18c7ee..dbde78bce68 100644 --- a/lib/public/Defaults.php +++ b/lib/public/Defaults.php @@ -51,7 +51,7 @@ class Defaults { * actual defaults * @since 6.0.0 */ - function __construct(\OC_Defaults $defaults = null) { + public function __construct(\OC_Defaults $defaults = null) { if ($defaults === null) { $defaults = \OC::$server->getThemingDefaults(); } |