Update AppManager.php

This commit is contained in:
Francis Lavoie 2020-09-03 21:10:50 -04:00 committed by GitHub
parent 25ff1d668c
commit 349fb54ae6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ interface AppManager
/** /**
* Get app by id. * Get app by id.
* *
* @param mixed $appId * @param int $appId
* @return \BeyondCode\LaravelWebSockets\Apps\App|null * @return \BeyondCode\LaravelWebSockets\Apps\App|null
*/ */
public function findById($appId): ?App; public function findById($appId): ?App;
@ -22,7 +22,7 @@ interface AppManager
/** /**
* Get app by app key. * Get app by app key.
* *
* @param mixed $appKey * @param string $appKey
* @return \BeyondCode\LaravelWebSockets\Apps\App|null * @return \BeyondCode\LaravelWebSockets\Apps\App|null
*/ */
public function findByKey($appKey): ?App; public function findByKey($appKey): ?App;
@ -30,7 +30,7 @@ interface AppManager
/** /**
* Get app by secret. * Get app by secret.
* *
* @param mixed $appSecret * @param string $appSecret
* @return \BeyondCode\LaravelWebSockets\Apps\App|null * @return \BeyondCode\LaravelWebSockets\Apps\App|null
*/ */
public function findBySecret($appSecret): ?App; public function findBySecret($appSecret): ?App;