Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class Responder implements ResponderInterface |
||
21 | { |
||
22 | private $response; |
||
23 | |||
24 | /** |
||
25 | * Responder constructor. |
||
26 | * @param ResponseInterface $response |
||
27 | */ |
||
28 | public function __construct( |
||
29 | ResponseInterface $response |
||
30 | ) { |
||
31 | $this->response = $response; |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @inheritDoc |
||
36 | */ |
||
37 | public function process(array $response): ResponseInterface |
||
44 | } |
||
45 | } |
||
46 |