Passed
Push — master ( 2093cb...8afb9a )
by Sam
02:27
created
src/FastAPNS/ClientStreamSocket.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,10 +75,10 @@
 block discarded – undo
75 75
   public function readFeedback() {
76 76
     $feedback = array();
77 77
 
78
-    while(!feof($this->stream_socket_client)) {
78
+    while (!feof($this->stream_socket_client)) {
79 79
       $data = fread($this->stream_socket_client, 38);
80 80
 
81
-      if(strlen($data)) {
81
+      if (strlen($data)) {
82 82
         $feedback[] = unpack("N1timestamp/n1length/H*devtoken", $data);
83 83
       }
84 84
     }
Please login to merge, or discard this patch.