Merge pull request #34421 from nextcloud/bugfix/noid/fix-typo-in-deprecated

Fix typo in deprecated
pull/30608/head
blizzz 2 years ago committed by GitHub
commit a87a8d78af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 */

@ -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();

@ -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;

Loading…
Cancel
Save