diff options
author | Joas Schilling <coding@schilljs.com> | 2022-10-04 11:42:24 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-10-04 11:42:24 +0200 |
commit | 82b98b4b9b695ba3c98a08a90c113c07ba88f900 (patch) | |
tree | 8166e0efa6caf1854f6693ad3edaa5c68ba10fa9 /lib/public | |
parent | ade1c1e99b53f5c338e3ac2b6107a2da89fcc6b8 (diff) | |
download | nextcloud-server-82b98b4b9b695ba3c98a08a90c113c07ba88f900.tar.gz nextcloud-server-82b98b4b9b695ba3c98a08a90c113c07ba88f900.zip |
Fix typo in deprecated
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/AppFramework/Http/RedirectToDefaultAppResponse.php | 4 | ||||
-rw-r--r-- | lib/public/Defaults.php | 2 | ||||
-rw-r--r-- | lib/public/Notification/IManager.php | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/AppFramework/Http/RedirectToDefaultAppResponse.php b/lib/public/AppFramework/Http/RedirectToDefaultAppResponse.php index e957b245e53..ad11b53637b 100644 --- a/lib/public/AppFramework/Http/RedirectToDefaultAppResponse.php +++ b/lib/public/AppFramework/Http/RedirectToDefaultAppResponse.php @@ -32,14 +32,14 @@ use OCP\IURLGenerator; * Redirects to the default app * * @since 16.0.0 - * @depreacted 23.0.0 Use RedirectResponse() with IURLGenerator::linkToDefaultPageUrl() instead + * @deprecated 23.0.0 Use RedirectResponse() with IURLGenerator::linkToDefaultPageUrl() instead */ class RedirectToDefaultAppResponse extends RedirectResponse { /** * Creates a response that redirects to the default app * * @since 16.0.0 - * @depreacted 23.0.0 Use RedirectResponse() with IURLGenerator::linkToDefaultPageUrl() instead + * @deprecated 23.0.0 Use RedirectResponse() with IURLGenerator::linkToDefaultPageUrl() instead */ public function __construct() { /** @var IURLGenerator $urlGenerator */ diff --git a/lib/public/Defaults.php b/lib/public/Defaults.php index 7c6d73bcaea..cbef0ec79a4 100644 --- a/lib/public/Defaults.php +++ b/lib/public/Defaults.php @@ -135,7 +135,7 @@ class Defaults { * name of your ownCloud instance containing HTML styles * @return string * @since 8.0.0 - * @depreacted 22.0.0 + * @deprecated 22.0.0 */ public function getHTMLName(): string { return $this->defaults->getHTMLName(); diff --git a/lib/public/Notification/IManager.php b/lib/public/Notification/IManager.php index dbf4aab4ea4..82f0ced07ed 100644 --- a/lib/public/Notification/IManager.php +++ b/lib/public/Notification/IManager.php @@ -52,7 +52,7 @@ interface IManager extends IApp, INotifier { * @param string $notifierService The service must implement INotifier, otherwise a * \InvalidArgumentException is thrown later * @since 17.0.0 - * @depreacted 22.0.0 use the IBootStrap registration context + * @deprecated 22.0.0 use the IBootStrap registration context */ public function registerNotifierService(string $notifierService): void; |