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

SetReplyMarkupButton   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A setReplyMarkupButton() 0 4 1
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
}