Passed
Push — master ( 4f2e75...0ade80 )
by Marco
02:19
created
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.