Completed
Push — master ( 315749...e0be30 )
by Алексей
03:54
created
src/Bot.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 use GuzzleHttp\Client;
13 13
 use Psr\Http\Message\ResponseInterface;
14
-use Telegram\Config\BaseConfig;
15 14
 use Telegram\Entry\MessageEntry;
16 15
 use Telegram\Exceptions\TelegramCoreException;
17 16
 use Telegram\Types\User;
Please login to merge, or discard this patch.
src/Entry/InlineKeyboard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         return $keyboard;
40 40
     }
41 41
 
42
-    public function toArray(){
42
+    public function toArray() {
43 43
         return $this->rows->toArray();
44 44
     }
45 45
 }
46 46
\ No newline at end of file
Please login to merge, or discard this patch.
src/Entry/MessageEntry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         return $this->set('inline_keyboard', $keyboard->toArray());
34 34
     }
35 35
 
36
-    public function text($text){
36
+    public function text($text) {
37 37
         return $this->set('text', $text);
38 38
     }
39 39
 
Please login to merge, or discard this patch.
src/Base/ArrayOfBaseType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     {
29 29
         $baseType    = $this->baseType;
30 30
         $this->array = collect($array)
31
-            ->map(function ($item) use ($baseType) {
31
+            ->map(function($item) use ($baseType) {
32 32
                 return new BaseType($item);
33 33
             });
34 34
     }
Please login to merge, or discard this patch.