@@ -67,8 +67,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | |
@@ -185,7 +185,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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) { |
@@ -140,6 +140,9 @@ |
||
| 140 | 140 | |
| 141 | 141 | } |
| 142 | 142 | |
| 143 | + /** |
|
| 144 | + * @param string $name |
|
| 145 | + */ |
|
| 143 | 146 | public function getInstance($name, TaskParameters $parameters = null) { |
| 144 | 147 | |
| 145 | 148 | $task_class = $this->getClass(); |
@@ -51,7 +51,7 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -65,7 +65,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | |
@@ -39,8 +39,7 @@ |
||
| 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 | |
@@ -48,6 +48,9 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | + /** |
|
| 52 | + * @param integer $uid |
|
| 53 | + */ |
|
| 51 | 54 | public function init($uid) { |
| 52 | 55 | |
| 53 | 56 | $this->ipc[$uid] = []; |
@@ -72,6 +75,10 @@ discard block |
||
| 72 | 75 | |
| 73 | 76 | } |
| 74 | 77 | |
| 78 | + /** |
|
| 79 | + * @param integer $uid |
|
| 80 | + * @param string $data |
|
| 81 | + */ |
|
| 75 | 82 | public function write($uid, $data) { |
| 76 | 83 | |
| 77 | 84 | $writer = $this->ipc[$uid][self::WRITER]; |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | /** |
| 137 | 137 | * Get cron expression of this schedule |
| 138 | 138 | * |
| 139 | - * @return string |
|
| 139 | + * @return CronExpression |
|
| 140 | 140 | */ |
| 141 | 141 | public function getExpression() { |
| 142 | 142 | |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | /** |
| 148 | 148 | * set cron expression for this schedule |
| 149 | 149 | * |
| 150 | - * @param srting $expression A cron-compatible expression |
|
| 150 | + * @param CronExpression $expression A cron-compatible expression |
|
| 151 | 151 | * @return Schedule |
| 152 | 152 | */ |
| 153 | 153 | public function setExpression(CronExpression $expression) { |
@@ -177,7 +177,7 @@ discard block |
||
| 177 | 177 | /** |
| 178 | 178 | * Set enable/disable status |
| 179 | 179 | * |
| 180 | - * @param bool $enable |
|
| 180 | + * @param boolean $enabled |
|
| 181 | 181 | * @return Schedule |
| 182 | 182 | */ |
| 183 | 183 | public function setEnabled($enabled) { |
@@ -116,6 +116,9 @@ discard block |
||
| 116 | 116 | |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | + /** |
|
| 120 | + * @param string $name |
|
| 121 | + */ |
|
| 119 | 122 | public function setName($name) { |
| 120 | 123 | |
| 121 | 124 | $this->name = $name; |
@@ -135,6 +138,9 @@ discard block |
||
| 135 | 138 | |
| 136 | 139 | } |
| 137 | 140 | |
| 141 | + /** |
|
| 142 | + * @param string $task |
|
| 143 | + */ |
|
| 138 | 144 | public function setTask($task) { |
| 139 | 145 | |
| 140 | 146 | $this->task = $task; |
@@ -260,7 +266,7 @@ discard block |
||
| 260 | 266 | /** |
| 261 | 267 | * Get start timestamp (microseconds) |
| 262 | 268 | * |
| 263 | - * @return float |
|
| 269 | + * @return integer |
|
| 264 | 270 | */ |
| 265 | 271 | public function getStartTimestamp() { |
| 266 | 272 | |