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

HandlerTrait   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 1
c 1
b 0
f 0
dl 0
loc 5
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __process() 0 2 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
}