InlineKeyboard::make()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
namespace TelegramBot\Entities;
4
5
/**
6
 * Class InlineKeyboard
7
 *
8
 * @link https://core.telegram.org/bots/api#inlinekeyboardmarkup
9
 */
10
class InlineKeyboard extends Keyboard
11
{
12
13
    /**
14
     * Creates instance of Keyboard
15
     *
16
     * @return InlineKeyboard
17
     */
18
    public static function make(): InlineKeyboard
19
    {
20
        return new self([]);
21
    }
22
23
}
24