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); }