Skip to content

Commit f85085a

Browse files
authored
Apply fixes from StyleCI (#25)
1 parent 0ab1586 commit f85085a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Extensions/Keyboard.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22

33
namespace BotMan\Drivers\Telegram\Extensions;
4+
45
use Illuminate\Support\Collection;
56

67
/**
@@ -91,8 +92,8 @@ public function toArray()
9192
'reply_markup' => json_encode(Collection::make([
9293
$this->type => $this->rows,
9394
'one_time_keyboard' => $this->oneTimeKeyboard,
94-
'resize_keyboard' => $this->resizeKeyboard
95-
])->filter())
95+
'resize_keyboard' => $this->resizeKeyboard,
96+
])->filter()),
9697
];
9798
}
9899
}

src/Extensions/KeyboardButton.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
use Illuminate\Support\Collection;
66

77
/**
8-
* Class KeyboardButton
9-
* @package BotMan\Drivers\Telegram\Extensions
8+
* Class KeyboardButton.
109
*/
1110
class KeyboardButton implements \JsonSerializable
1211
{

0 commit comments

Comments
 (0)