aboutsummaryrefslogtreecommitdiffstats
path: root/apps/theming/lib/Controller/ThemingController.php
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2018-06-07 12:34:02 +0200
committerGitHub <noreply@github.com>2018-06-07 12:34:02 +0200
commit444c2911d45f95d817eb53bde03650f9ff73739c (patch)
treef4267b5960159e8ec87aa63bfcdff3c7d2f9a6b7 /apps/theming/lib/Controller/ThemingController.php
parent6f5c7c1888bbc5a6431ca2cc701a1c58dfde4e91 (diff)
parentf65a6e782c155e30df63420a343b865d18ba213e (diff)
downloadnextcloud-server-444c2911d45f95d817eb53bde03650f9ff73739c.tar.gz
nextcloud-server-444c2911d45f95d817eb53bde03650f9ff73739c.zip
Merge pull request #9780 from nextcloud/bug/noid/mock_timefactory_theming
Mock the timefactory in the theming tests
Diffstat (limited to 'apps/theming/lib/Controller/ThemingController.php')
-rw-r--r--apps/theming/lib/Controller/ThemingController.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/theming/lib/Controller/ThemingController.php b/apps/theming/lib/Controller/ThemingController.php
index c50e8a18460..99b98ab7da3 100644
--- a/apps/theming/lib/Controller/ThemingController.php
+++ b/apps/theming/lib/Controller/ThemingController.php
@@ -66,8 +66,6 @@ class ThemingController extends Controller {
private $themingDefaults;
/** @var Util */
private $util;
- /** @var ITimeFactory */
- private $timeFactory;
/** @var IL10N */
private $l10n;
/** @var IConfig */
@@ -93,7 +91,6 @@ class ThemingController extends Controller {
* @param IConfig $config
* @param ThemingDefaults $themingDefaults
* @param Util $util
- * @param ITimeFactory $timeFactory
* @param IL10N $l
* @param ITempManager $tempManager
* @param IAppData $appData
@@ -108,7 +105,6 @@ class ThemingController extends Controller {
IConfig $config,
ThemingDefaults $themingDefaults,
Util $util,
- ITimeFactory $timeFactory,
IL10N $l,
ITempManager $tempManager,
IAppData $appData,
@@ -121,7 +117,6 @@ class ThemingController extends Controller {
$this->themingDefaults = $themingDefaults;
$this->util = $util;
- $this->timeFactory = $timeFactory;
$this->l10n = $l;
$this->config = $config;
$this->tempManager = $tempManager;