Passed
Push — master ( 0ade80...5e8674 )
by Marco
02:17
created
src/Comodojo/Daemon/Worker/Manager.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
  * THE SOFTWARE.
30 30
  */
31 31
 
32
- class Manager implements Iterator, Countable {
32
+    class Manager implements Iterator, Countable {
33 33
 
34 34
     use IteratorTrait;
35 35
     use CountableTrait;
@@ -274,4 +274,4 @@  discard block
 block discarded – undo
274 274
 
275 275
     }
276 276
 
277
- }
277
+    }
Please login to merge, or discard this patch.
src/Comodojo/Daemon/Socket/Server.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -288,9 +288,9 @@
 block discarded – undo
288 288
 
289 289
                     if ($message === null) {
290 290
                     // if ($message == null) {
291
-                         $this->hangup($client);
291
+                            $this->hangup($client);
292 292
                     } else if ( $message === false ) {
293
-                         continue;
293
+                            continue;
294 294
                     } else {
295 295
                         $output = $this->serve($message);
296 296
                         $this->write($client, $output);
Please login to merge, or discard this patch.
src/Comodojo/Daemon/Socket/SocketTransport.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@
 block discarded – undo
238 238
     }
239 239
 
240 240
     /**
241
-    * Check if an encrypted envelope is consisent or not
241
+     * Check if an encrypted envelope is consisent or not
242 242
      *
243 243
      * @param   string    $data
244 244
      *
Please login to merge, or discard this patch.