Completed
Push — 2.0 ( b5ef61...2c7009 )
by Marco
12:59 queued 12s
created
src/Comodojo/Extender/Tasks/AbstractTask.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -36,10 +36,7 @@
 block discarded – undo
36 36
      * 
37 37
      * @param   array           $parameters     Array of parameters (if any)
38 38
      * @param   \Monolog\Logger $logger
39
-     * @param   int             $pid            Task PID (if any)
40 39
      * @param   string          $name           Task Name
41
-     * @param   int             $timestamp      Start timestamp (if null will be retrieved directly)
42
-     * @param   bool            $multithread    Multithread switch
43 40
      * 
44 41
      * @return  Object  $this 
45 42
      */
Please login to merge, or discard this patch.
src/Comodojo/Extender/Tasks/TaskInterface.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -32,10 +32,7 @@
 block discarded – undo
32 32
      * 
33 33
      * @param   array           $parameters     Array of parameters (if any)
34 34
      * @param   \Monolog\Logger $logger
35
-     * @param   int             $pid            Task PID (if any)
36 35
      * @param   string          $name           Task Name
37
-     * @param   int             $timestamp      Start timestamp (if null will be retrieved directly)
38
-     * @param   bool            $multithread    Multithread switch
39 36
      * 
40 37
      * @return  Object  $this 
41 38
      */
Please login to merge, or discard this patch.
src/Comodojo/Extender/Tasks/Worklog.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         $this->dbh
47 47
             ->createQueryBuilder()
48 48
             ->insert($this->table)
49
-            ->values(array (
49
+            ->values(array(
50 50
                 'status' => 'RUNNING',
51 51
                 'pid' => '?',
52 52
                 'name' => '?',
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             ->createQueryBuilder()
73 73
             ->update($this->table)
74 74
             ->where("id = $wid")
75
-            ->values(array (
75
+            ->values(array(
76 76
                 'status' => 'FINISHED',
77 77
                 'success' => '?',
78 78
                 'result' => '?',
Please login to merge, or discard this patch.