This repository was archived by the owner on Feb 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class App
39
39
/**
40
40
* Find the app by id.
41
41
*
42
- * @param mixed $appId
42
+ * @param int $appId
43
43
* @return \BeyondCode\LaravelWebSockets\Apps\App|null
44
44
*/
45
45
public static function findById ($ appId )
@@ -50,7 +50,7 @@ public static function findById($appId)
50
50
/**
51
51
* Find the app by app key.
52
52
*
53
- * @param mixed $appId
53
+ * @param string $appKey
54
54
* @return \BeyondCode\LaravelWebSockets\Apps\App|null
55
55
*/
56
56
public static function findByKey ($ appKey ): ?self
@@ -61,7 +61,7 @@ public static function findByKey($appKey): ?self
61
61
/**
62
62
* Find the app by app secret.
63
63
*
64
- * @param mixed $appId
64
+ * @param string $appSecret
65
65
* @return \BeyondCode\LaravelWebSockets\Apps\App|null
66
66
*/
67
67
public static function findBySecret ($ appSecret ): ?self
@@ -72,9 +72,9 @@ public static function findBySecret($appSecret): ?self
72
72
/**
73
73
* Initialize the Web Socket app instance.
74
74
*
75
- * @param mixed $appId
76
- * @param mixed $key
77
- * @param mixed $secret
75
+ * @param int $appId
76
+ * @param string $key
77
+ * @param string $secret
78
78
* @return void
79
79
* @throws \BeyondCode\LaravelWebSockets\Exceptions\InvalidApp
80
80
*/
You can’t perform that action at this time.
0 commit comments