From 14918bda658db0e3b1d7d0847ba182d3d2fd8033 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 11 Aug 2017 11:09:52 +0200 Subject: [PATCH] Fix theme interfaces "since" version --- lib/public/Theme/ITheme.php | 14 +++++++------- lib/public/Theme/IThemeService.php | 10 +++++----- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/lib/public/Theme/ITheme.php b/lib/public/Theme/ITheme.php index 5807cf8ebee2..c73390c975d7 100644 --- a/lib/public/Theme/ITheme.php +++ b/lib/public/Theme/ITheme.php @@ -22,43 +22,43 @@ /** * The representation of a Theme. * @package OCP\Theme - * @since 10.0.1 + * @since 10.0.3 */ interface ITheme { /** * @return string - * @since 10.0.1 + * @since 10.0.3 */ public function getName(); /** * @return string - * @since 10.0.1 + * @since 10.0.3 */ public function getDirectory(); /** * @return string - * @since 10.0.1 + * @since 10.0.3 */ public function getWebPath(); /** * @param string $name - * @since 10.0.1 + * @since 10.0.3 */ public function setName($name); /** * @param string $directory - * @since 10.0.1 + * @since 10.0.3 */ public function setDirectory($directory); /** * @param string $webPath - * @since 10.0.1 + * @since 10.0.3 */ public function setWebPath($webPath); } diff --git a/lib/public/Theme/IThemeService.php b/lib/public/Theme/IThemeService.php index 2508787359e9..1661492ae873 100644 --- a/lib/public/Theme/IThemeService.php +++ b/lib/public/Theme/IThemeService.php @@ -21,28 +21,28 @@ /** * @package OCP\Theme - * @since 10.0.1 + * @since 10.0.3 */ interface IThemeService { /** * Returns the currently active theme. * @return ITheme - * @since 10.0.1 + * @since 10.0.3 */ public function getTheme(); /** * Sets an app as the active theme. * @param string $themeName - * @since 10.0.1 + * @since 10.0.3 */ public function setAppTheme($themeName = ''); /** * Gets legacy and app themes as an array of ITheme's. * @return ITheme[] - * @since 10.0.1 + * @since 10.0.3 */ public function getAllThemes(); @@ -51,7 +51,7 @@ public function getAllThemes(); * with that name. * @param string $themeName * @return ITheme|false - * @since 10.0.1 + * @since 10.0.3 */ public function findTheme($themeName); }