diff options
author | Joas Schilling <coding@schilljs.com> | 2017-04-20 13:10:34 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-04-20 13:10:34 +0200 |
commit | 8c703c954d7488067b50df4cc6616811e1434494 (patch) | |
tree | 0610f525e243e8bf638ea0b128216aff7ff30bd8 /lib/public | |
parent | b2deb6deb097a869bdae9ee273225641f0e0b506 (diff) | |
download | nextcloud-server-8c703c954d7488067b50df4cc6616811e1434494.tar.gz nextcloud-server-8c703c954d7488067b50df4cc6616811e1434494.zip |
Fix theming tests
Trying to configure method "shouldReplaceIcons" which cannot be configured
because it does not exist, has not been specified, is final, or is static
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public')
-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(); } |