Passed
Push — master ( e494fe...18c703 )
by Freddie
09:16
created

Controller::jsonResponse()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 4
nc 2
nop 3
dl 0
loc 10
rs 9.4285
c 0
b 0
f 0
1
<?php declare(strict_types = 1);
2
3
namespace Simplex;
4
5
use Psr\Http\Message\ResponseInterface;
6
7
interface Controller
8
{
9
    public function setResponse(ResponseInterface $response): void;
10
}
11