Test Setup Failed
Push — master ( e9a1d5...421647 )
by
unknown
03:08
created

Unknown   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 7
c 0
b 0
f 0
rs 10
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A toResponse() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace FondBot\Events;
6
7
use FondBot\Contracts\Event;
8
9
class Unknown implements Event
10
{
11
    public function toResponse($request)
12
    {
13
        // TODO: Implement toResponse() method.
14
    }
15
}
16