Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit 349fb54

Browse files
Update AppManager.php
1 parent 25ff1d6 commit 349fb54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Apps/AppManager.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@ public function all(): array;
1414
/**
1515
* Get app by id.
1616
*
17-
* @param mixed $appId
17+
* @param int $appId
1818
* @return \BeyondCode\LaravelWebSockets\Apps\App|null
1919
*/
2020
public function findById($appId): ?App;
2121

2222
/**
2323
* Get app by app key.
2424
*
25-
* @param mixed $appKey
25+
* @param string $appKey
2626
* @return \BeyondCode\LaravelWebSockets\Apps\App|null
2727
*/
2828
public function findByKey($appKey): ?App;
2929

3030
/**
3131
* Get app by secret.
3232
*
33-
* @param mixed $appSecret
33+
* @param string $appSecret
3434
* @return \BeyondCode\LaravelWebSockets\Apps\App|null
3535
*/
3636
public function findBySecret($appSecret): ?App;

0 commit comments

Comments
 (0)