Completed
Push — 2.0 ( bcdb61...f02592 )
by Marco
02:29
created
src/Comodojo/Extender/Events/TaskStatusEvent.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -28,6 +28,9 @@
 block discarded – undo
28 28
 
29 29
     private $task;
30 30
 
31
+    /**
32
+     * @param string $status
33
+     */
31 34
     public function __construct($status, TaskInterface $task) {
32 35
 
33 36
         $name = $task->getName();
Please login to merge, or discard this patch.
src/Comodojo/Extender/Task/AbstractTask.php 1 patch
Doc Comments   +5 added lines, -8 removed lines patch added patch discarded remove patch
@@ -67,8 +67,7 @@  discard block
 block discarded – undo
67 67
     /**
68 68
      * Get niceness of a running process
69 69
      *
70
-     * @param int|null $pid The pid to query, or current process if null
71
-     * @return int
70
+     * @return string
72 71
      */
73 72
     public function getName() {
74 73
 
@@ -79,8 +78,7 @@  discard block
 block discarded – undo
79 78
     /**
80 79
      * Get niceness of a running process
81 80
      *
82
-     * @param int|null $pid The pid to query, or current process if null
83
-     * @return int
81
+     * @return TaskParameters
84 82
      */
85 83
     public function getParameters() {
86 84
 
@@ -91,8 +89,8 @@  discard block
 block discarded – undo
91 89
     /**
92 90
      * Get niceness of a running process
93 91
      *
94
-     * @param int|null $pid The pid to query, or current process if null
95
-     * @return int
92
+     * @param string $name
93
+     * @return AbstractTask
96 94
      */
97 95
     public function setName($name) {
98 96
 
@@ -105,8 +103,7 @@  discard block
 block discarded – undo
105 103
     /**
106 104
      * Get niceness of a running process
107 105
      *
108
-     * @param int|null $pid The pid to query, or current process if null
109
-     * @return int
106
+     * @return AbstractTask
110 107
      */
111 108
     public function setParameters(TaskParameters $parameters) {
112 109
 
Please login to merge, or discard this patch.
src/Comodojo/Extender/Components/Database.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -57,6 +57,9 @@
 block discarded – undo
57 57
 
58 58
     }
59 59
 
60
+    /**
61
+     * @return EntityManager
62
+     */
60 63
     public function getEntityManager() {
61 64
 
62 65
         if ( $this->entity_manager === null ) {
Please login to merge, or discard this patch.
src/Comodojo/Extender/Orm/Entities/Worklog.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
     /**
186 186
      * Get worklog item's parent
187 187
      *
188
-     * @return strin
188
+     * @return integer
189 189
      */
190 190
     public function getParentUid() {
191 191
 
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
      * Set associated task
223 223
      *
224 224
      * @param string $task
225
-     * @return Schedule
225
+     * @return Worklog
226 226
      */
227 227
     public function setTask($task) {
228 228
 
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
      * Set queue item's parameters
248 248
      *
249 249
      * @param TaskParameters $parameters
250
-     * @return Schedule
250
+     * @return Worklog
251 251
      */
252 252
     public function setParameters(TaskParameters $parameters) {
253 253
 
@@ -271,7 +271,6 @@  discard block
 block discarded – undo
271 271
     /**
272 272
      * Set current job status
273 273
      *
274
-     * @param string $name
275 274
      * @return Worklog
276 275
      */
277 276
     public function setStatus($status) {
Please login to merge, or discard this patch.
src/Comodojo/Extender/Queue/Manager.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -38,10 +38,8 @@
 block discarded – undo
38 38
     /**
39 39
      * Class constructor
40 40
      *
41
-     * @param string $manager_name
42 41
      * @param Configuration $configuration
43 42
      * @param LoggerInterface $logger
44
-     * @param TasksTable $tasks
45 43
      * @param EventsManager $events
46 44
      * @param EntityManager $em
47 45
      */
Please login to merge, or discard this patch.
src/Comodojo/Extender/Task/Locker.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -95,6 +95,9 @@  discard block
 block discarded – undo
95 95
 
96 96
     }
97 97
 
98
+    /**
99
+     * @param null|integer $pid
100
+     */
98 101
     public function setRunning($uid, $pid) {
99 102
 
100 103
         $request = $this->queued[$uid];
@@ -214,6 +217,9 @@  discard block
 block discarded – undo
214 217
 
215 218
     }
216 219
 
220
+    /**
221
+     * @param string $name
222
+     */
217 223
     public static function create($name, Configuration $configuration, LoggerInterface $logger) {
218 224
 
219 225
         return new Locker($name, $configuration, $logger);
Please login to merge, or discard this patch.
src/Comodojo/Extender/Traits/BaseEntityTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      * Set queue item's id
52 52
      *
53 53
      * @param string $id
54
-     * @return Schedule
54
+     * @return BaseEntityTrait
55 55
      */
56 56
     public function setId($id) {
57 57
 
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      * Set queue item's name
77 77
      *
78 78
      * @param string $name
79
-     * @return Schedule
79
+     * @return BaseEntityTrait
80 80
      */
81 81
     public function setName($name) {
82 82
 
Please login to merge, or discard this patch.
src/Comodojo/Extender/Traits/BaseWorklogTrait.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      * Set queue item's id
66 66
      *
67 67
      * @param string $id
68
-     * @return Schedule
68
+     * @return BaseScheduleEntityTrait
69 69
      */
70 70
     public function setId($id) {
71 71
 
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      * Set queue item's name
91 91
      *
92 92
      * @param string $name
93
-     * @return Schedule
93
+     * @return BaseScheduleEntityTrait
94 94
      */
95 95
     public function setName($name) {
96 96
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      * Set associated task
116 116
      *
117 117
      * @param string $task
118
-     * @return Schedule
118
+     * @return BaseScheduleEntityTrait
119 119
      */
120 120
     public function setTask($task) {
121 121
 
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
      * Set queue item's parameters
141 141
      *
142 142
      * @param TaskParameters $parameters
143
-     * @return Schedule
143
+     * @return BaseScheduleEntityTrait
144 144
      */
145 145
     public function setParameters(TaskParameters $parameters) {
146 146
 
Please login to merge, or discard this patch.
src/Comodojo/Extender/Traits/EntityManagerTrait.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,8 +39,7 @@
 block discarded – undo
39 39
     /**
40 40
      * Set EntityManager
41 41
      *
42
-     * @param string $id
43
-     * @return Schedule
42
+     * @return EntityManagerTrait
44 43
      */
45 44
     public function setEntityManager(EntityManager $em) {
46 45
 
Please login to merge, or discard this patch.