Completed
Push — master ( 3147c9...abfbd6 )
by Vladimir
03:05
created
src/helpers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      *
25 25
      * @param mixed|null  $default
26 26
      *
27
-     * @return \FondBot\Conversation\Context|mixed
27
+     * @return FondBot\Conversation\Context
28 28
      */
29 29
     function context(string $key = null, $default = null)
30 30
     {
Please login to merge, or discard this patch.
src/Foundation/API.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace FondBot\Foundation;
6 6
 
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
37 37
      *
38 38
      * @return array|null
39 39
      */
40
-    public function findDriver(string $name): ?array
40
+    public function findDriver(string $name): ? array
41 41
     {
42
-        return $this->getDrivers()->first(function ($item) use ($name) {
42
+        return $this->getDrivers()->first(function($item) use ($name) {
43 43
             return $item['name'] === $name;
44 44
         });
45 45
     }
Please login to merge, or discard this patch.