From bba0037ca790f77bacd228f73f85719a0088637e Mon Sep 17 00:00:00 2001 From: Atef Ben Ali Date: Thu, 9 Aug 2018 14:01:49 +0100 Subject: [PATCH] remove `close connection` statement This instruction has been called twice for because it always called while the `object destruction` (https://github.com/dunglas/php-torcontrol/blob/master/src/TorControl.php#L136). --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 77ab2cc..e046e5b 100644 --- a/README.md +++ b/README.md @@ -63,10 +63,6 @@ $res = $tc->executeCommand('SIGNAL NEWNYM'); // Echo the server reply code and message echo $res[0]['code'].': '.$res[0]['message']; - -// Quit -$tc->quit(); - ``` Related