Passed
Push — master ( 4c2b59...061776 )
by Shahrad
02:09
created

HandlerTrait::__process()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 0
c 1
b 0
f 0
dl 0
loc 2
rs 10
cc 1
nc 1
nop 1
1
<?php
2
declare(strict_types=1);
3
4
namespace TelegramBot\Traits;
5
6
use TelegramBot\Entities\Update;
7
8
/**
9
 * HandlerTrait class
10
 *
11
 * @link    https://github.com/telegram-bot-php/core
12
 * @author  Shahrad Elahi (https://github.com/shahradelahi)
13
 * @license https://github.com/telegram-bot-php/core/blob/master/LICENSE (MIT License)
14
 */
15
trait HandlerTrait
16
{
17
18
    public function __process(Update $update): void
19
    {
20
        // TODO: Implement __process() method.
21
    }
22
23
}