Update ConfigAppManager.php

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

View File

@ -38,7 +38,7 @@ class ConfigAppManager implements 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
@ -53,7 +53,7 @@ class ConfigAppManager implements 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
@ -68,7 +68,7 @@ class ConfigAppManager implements 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