Test Setup Failed
Push — develop ( 01f508...e1be97 )
by Mattias
01:57
created
src/APIPollClient.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@  discard block
 block discarded – undo
25 25
   }
26 26
 
27 27
   /**
28
-   * @param CallableInterface $responseInterface
29 28
    */
30 29
   public function poll($responseHandler)
31 30
   {
@@ -79,6 +78,10 @@  discard block
 block discarded – undo
79 78
     }
80 79
 
81 80
 
81
+    /**
82
+     * @param string $command
83
+     * @param string $params
84
+     */
82 85
     private function assembleUri($command, $params) :string
83 86
     {
84 87
         return sprintf(
Please login to merge, or discard this patch.
src/Bot.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
   private $client;
17 17
 
18 18
   /**
19
-   * @param APIClient $client
19
+   * @param APIPollClient $client
20 20
    */
21 21
   public function __construct(APIPollClient $client)
22 22
   {
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
   /**
73 73
    * @param APIMessage $message
74
-   * @return function
74
+   * @return \Closure
75 75
    */
76 76
   public function getResponder(APIMessage $message)
77 77
   {
Please login to merge, or discard this patch.