Completed
Push — refactor_entities ( c38610...2711d6 )
by Armando
03:36
created

InlineEntity::__call()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 13
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 2
Bugs 0 Features 0
Metric Value
dl 0
loc 13
rs 9.4285
c 2
b 0
f 0
ccs 0
cts 10
cp 0
cc 2
eloc 7
nc 2
nop 2
crap 6
1
<?php
2
/**
3
 * This file is part of the TelegramBot package.
4
 *
5
 * (c) Avtandil Kikabidze aka LONGMAN <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Longman\TelegramBot\Entities\InlineQuery;
12
13
use Longman\TelegramBot\Entities\Entity;
14
15
/**
16
 * Class InlineEntity
17
 *
18
 * This is the base class for all inline entities.
19
 */
20
abstract class InlineEntity extends Entity
21
{
22
23
}
24