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/Daemon.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
      * @property LoggerInterface $logger
68 68
      * @property int $pid
69 69
      */
70
-    public function __construct($properties = [], LoggerInterface $logger = null, EventsManager $events = null){
70
+    public function __construct($properties = [], LoggerInterface $logger = null, EventsManager $events = null) {
71 71
 
72 72
         if ( !Checks::multithread() ) {
73 73
             throw new Exception("Missing pcntl fork");
Please login to merge, or discard this patch.
src/Comodojo/Daemon/Process.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      * @param LoggerInterface $logger;
45 45
      * @param EventsManager $events;
46 46
      */
47
-    public function __construct($niceness = null, LoggerInterface $logger = null, EventsManager $events = null){
47
+    public function __construct($niceness = null, LoggerInterface $logger = null, EventsManager $events = null) {
48 48
 
49 49
         if ( !Checks::cli() ) {
50 50
             throw new RuntimeException("Process can run only in cli SAPI");
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.