Completed
Push — 2.0 ( 14c778...b5ef61 )
by Marco
11:18
created
src/Comodojo/Extender/Tasks/AbstractTask.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -52,10 +52,8 @@
 block discarded – undo
52 52
      * 
53 53
      * @param   array           $parameters     Array of parameters (if any)
54 54
      * @param   \Monolog\Logger $logger
55
-     * @param   int             $pid            Task PID (if any)
56 55
      * @param   string          $name           Task Name
57 56
      * @param   int             $timestamp      Start timestamp (if null will be retrieved directly)
58
-     * @param   bool            $multithread    Multithread switch
59 57
      * 
60 58
      * @return  Object  $this 
61 59
      */
Please login to merge, or discard this patch.
src/Comodojo/Extender/Components/ProcessUtils.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
 
80 80
     }
81 81
 
82
-    public static function filterNiceness($niceness=null) {
82
+    public static function filterNiceness($niceness = null) {
83 83
 
84 84
         return filter_var($niceness, FILTER_VALIDATE_INT, array(
85 85
             'options' => array(
Please login to merge, or discard this patch.
src/Comodojo/Extender/Jobs/Job.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
     use DataAccessTrait;
32 32
     
33
-    public function __construct($name, $id, $task, $class, $parameters=array()) {
33
+    public function __construct($name, $id, $task, $class, $parameters = array()) {
34 34
         
35 35
         $this->name = $name;
36 36
         $this->id = $id;
Please login to merge, or discard this patch.