Completed
Push — master ( 15ad7c...0efd86 )
by Maik
04:38
created
src/Generics/Socket/SecureClientSocket.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         $this->handle = $clientHandle;
36 36
         $this->conntected = false;
37 37
         
38
-        if (! is_resource($clientHandle)) {
38
+        if (!is_resource($clientHandle)) {
39 39
             parent::__construct($endpoint);
40 40
         }
41 41
     }
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public function disconnect()
59 59
     {
60
-        if (! $this->conntected) {
60
+        if (!$this->conntected) {
61 61
             throw new SocketException("Socket is not connected");
62 62
         }
63 63
         
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      */
92 92
     public function isWriteable(): bool
93 93
     {
94
-        if (! $this->isConnected()) {
94
+        if (!$this->isConnected()) {
95 95
             return false;
96 96
         }
97 97
         
Please login to merge, or discard this patch.