Skip to content

Commit

Permalink
Apply fixes from StyleCI (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot authored Jan 24, 2018
1 parent 0ab1586 commit f85085a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/Extensions/Keyboard.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

namespace BotMan\Drivers\Telegram\Extensions;

use Illuminate\Support\Collection;

/**
Expand Down Expand Up @@ -91,8 +92,8 @@ public function toArray()
'reply_markup' => json_encode(Collection::make([
$this->type => $this->rows,
'one_time_keyboard' => $this->oneTimeKeyboard,
'resize_keyboard' => $this->resizeKeyboard
])->filter())
'resize_keyboard' => $this->resizeKeyboard,
])->filter()),
];
}
}
3 changes: 1 addition & 2 deletions src/Extensions/KeyboardButton.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
use Illuminate\Support\Collection;

/**
* Class KeyboardButton
* @package BotMan\Drivers\Telegram\Extensions
* Class KeyboardButton.
*/
class KeyboardButton implements \JsonSerializable
{
Expand Down

0 comments on commit f85085a

Please sign in to comment.