Passed
Branch master (58629d)
by Leonardo
01:27
created

SetReplyMarkupButton::setReplyMarkupButton()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace LeoCarmo\TelegramBot\Traits;
4
5
use LeoCarmo\TelegramBot\Model\Buttons\Button;
6
7
trait SetReplyMarkupButton
8
{
9
10
    /**
11
     * @var
12
     */
13
    protected $reply_markup;
14
15
    /**
16
     * @param Button $button
17
     * @return $this
18
     */
19
    public function setReplyMarkupButton(Button $button)
20
    {
21
        $this->reply_markup = $button->getReplyMarkup();
22
        return $this;
23
    }
24
25
}