Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
17 | 1 | public function performSpecialActions(ClientInterface $client, WritableContentInterface $originalRequest): bool |
|
18 | { |
||
19 | 1 | $successFullyClosed = $client->shutdownConnection(); |
|
20 | 1 | $this->logger->info('Sent shutdown signal to socket', ['successFullyClosed' => $successFullyClosed]); |
|
21 | 1 | $client->setConnected(false); |
|
22 | 1 | return true; |
|
23 | } |
||
38 |