| Total Complexity | 7 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class LogCommand implements CommandInterface |
||
| 12 | { |
||
| 13 | private $request; |
||
| 14 | |||
| 15 | private $response; |
||
| 16 | |||
| 17 | public function __construct(Request $request, Response $response) |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getName() |
||
| 24 | { |
||
| 25 | return 'LOG'; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getRequest() |
||
| 49 | } |
||
| 50 | |||
| 51 | public function hasResponse() |
||
| 54 | } |
||
| 55 | |||
| 56 | public function parseResponse($response) |
||
| 61 |