Completed
Pull Request — master (#413)
by
unknown
01:22
created
src/Apps/AppProvider.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -7,9 +7,18 @@
 block discarded – undo
7 7
     /**  @return array[BeyondCode\LaravelWebSockets\AppProviders\App] */
8 8
     public function all(): array;
9 9
 
10
+    /**
11
+     * @return null|App
12
+     */
10 13
     public function findById($appId): ?App;
11 14
 
15
+    /**
16
+     * @return null|App
17
+     */
12 18
     public function findByKey(string $appKey): ?App;
13 19
 
20
+    /**
21
+     * @return null|App
22
+     */
14 23
     public function findBySecret(string $appSecret): ?App;
15 24
 }
Please login to merge, or discard this patch.
src/Statistics/DnsResolver.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
         return $this->resolveInternal($domain, $type);
28 28
     }
29 29
 
30
+    /**
31
+     * @param string $domain
32
+     */
30 33
     private function resolveInternal($domain, $type = null)
31 34
     {
32 35
         return new FulfilledPromise($this->internalIP);
Please login to merge, or discard this patch.
src/Server/Logger/WebsocketsLogger.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     /**
17 17
      * WebsocketsLogger polymorphic constructor for Logger Singleton instanciation and WSServer instanciation.
18 18
      *
19
-     * @param MessageComponentInterface|OutputInterface $app
19
+     * @param \Illuminate\Console\OutputStyle $app
20 20
      */
21 21
     public function __construct($app)
22 22
     {
Please login to merge, or discard this patch.