]> source.dussan.org Git - nextcloud-server.git/commitdiff
Revert "[stable16] Fix userid casting in notifications" 16068/head
authorRoeland Jago Douma <rullzer@users.noreply.github.com>
Tue, 25 Jun 2019 10:38:03 +0000 (12:38 +0200)
committerRoeland Jago Douma <roeland@famdouma.nl>
Tue, 25 Jun 2019 10:39:40 +0000 (12:39 +0200)
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
lib/private/Notification/Notification.php
lib/public/Notification/INotification.php

index ff3826047dd05318e44162e2aa4972e37647be81..ef7cdb5d444f3ea537cbe93789c749f00e1c45ce 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-declare (strict_types = 1);
 /**
  * @copyright Copyright (c) 2016, ownCloud, Inc.
  *
@@ -134,7 +133,7 @@ class Notification implements INotification {
         * @throws \InvalidArgumentException if the app id is invalid
         * @since 8.2.0
         */
-       public function setApp(string $app) {
+       public function setApp($app) {
                if (!is_string($app) || $app === '' || isset($app[32])) {
                        throw new \InvalidArgumentException('The given app name is invalid');
                }
@@ -156,7 +155,7 @@ class Notification implements INotification {
         * @throws \InvalidArgumentException if the user id is invalid
         * @since 8.2.0
         */
-       public function setUser(string $user) {
+       public function setUser($user) {
                if (!is_string($user) || $user === '' || isset($user[64])) {
                        throw new \InvalidArgumentException('The given user id is invalid');
                }
index f71d0c53cc84e41c820baa717201ce9daf208121..29f2a0e7943ab617fb43664a139afedb720ae4c6 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-declare (strict_types = 1);
 /**
  * @copyright Copyright (c) 2016, ownCloud, Inc.
  *
@@ -37,7 +36,7 @@ interface INotification {
         * @throws \InvalidArgumentException if the app id is invalid
         * @since 9.0.0
         */
-       public function setApp(string $app);
+       public function setApp($app);
 
        /**
         * @return string
@@ -51,7 +50,7 @@ interface INotification {
         * @throws \InvalidArgumentException if the user id is invalid
         * @since 9.0.0
         */
-       public function setUser(string $user);
+       public function setUser($user);
 
        /**
         * @return string