Browse Source

fclose after return in closeSocket

tags/0.4
Paul Rock 7 years ago
parent
commit
79711406bc
  1. 3
      src/Client.php

3
src/Client.php

@ -328,7 +328,6 @@ class Client implements Interfaces\ClientInterface
*/ */
private function closeSocket(): bool private function closeSocket(): bool
{ {
fclose($this->_socket);
return true;
return fclose($this->_socket);
} }
} }
Loading…
Cancel
Save