Completed
Push — master ( cc759f...8d8339 )
by Vladimir
02:27
created
src/Bot.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -187,7 +187,7 @@
 block discarded – undo
187 187
     /**
188 188
      * Start conversation.
189 189
      *
190
-     * @param Conversable|Intent|Interaction $conversable
190
+     * @param Conversable $conversable
191 191
      */
192 192
     public function converse(Conversable $conversable): void
193 193
     {
Please login to merge, or discard this patch.
src/Conversation/Context.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      * Get current intent instance.
71 71
      *
72
-     * @return Intent|Conversable|null
72
+     * @return null|Intent
73 73
      */
74 74
     public function getIntent(): ?Intent
75 75
     {
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     /**
90 90
      * Get current interaction instance.
91 91
      *
92
-     * @return Interaction|Conversable|null
92
+     * @return null|Interaction
93 93
      */
94 94
     public function getInteraction(): ?Interaction
95 95
     {
Please login to merge, or discard this patch.