From 349fb54ae654059a58723ad599be2fe1466988d9 Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Thu, 3 Sep 2020 21:10:50 -0400 Subject: [PATCH] Update AppManager.php --- src/Apps/AppManager.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Apps/AppManager.php b/src/Apps/AppManager.php index 03c0c9e..2b7b283 100644 --- a/src/Apps/AppManager.php +++ b/src/Apps/AppManager.php @@ -14,7 +14,7 @@ interface AppManager /** * Get app by id. * - * @param mixed $appId + * @param int $appId * @return \BeyondCode\LaravelWebSockets\Apps\App|null */ public function findById($appId): ?App; @@ -22,7 +22,7 @@ interface AppManager /** * Get app by app key. * - * @param mixed $appKey + * @param string $appKey * @return \BeyondCode\LaravelWebSockets\Apps\App|null */ public function findByKey($appKey): ?App; @@ -30,7 +30,7 @@ interface AppManager /** * Get app by secret. * - * @param mixed $appSecret + * @param string $appSecret * @return \BeyondCode\LaravelWebSockets\Apps\App|null */ public function findBySecret($appSecret): ?App;