Test Setup Failed
Pull Request — master (#7)
by Matthew
14:04
created
Model/Job.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     }
45 45
 
46 46
     /**
47
-     * @param $message
47
+     * @param string|null $message
48 48
      */
49 49
     public function setMessage($message)
50 50
     {
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
     }
245 245
 
246 246
     /**
247
-     * @return mixed
247
+     * @return \DateTime
248 248
      */
249 249
     public function getStartedAt()
250 250
     {
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
     }
253 253
 
254 254
     /**
255
-     * @param mixed $startedAt
255
+     * @param \DateTime $startedAt
256 256
      */
257 257
     public function setStartedAt(\DateTime $startedAt)
258 258
     {
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
     }
269 269
 
270 270
     /**
271
-     * @param mixed $finishedAt
271
+     * @param \DateTime $finishedAt
272 272
      */
273 273
     public function setFinishedAt($finishedAt)
274 274
     {
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
     }
336 336
 
337 337
     /**
338
-     * @param $crcHash
338
+     * @param string $crcHash
339 339
      */
340 340
     public function setCrcHash($crcHash)
341 341
     {
@@ -449,7 +449,7 @@  discard block
 block discarded – undo
449 449
     }
450 450
 
451 451
     /**
452
-     * @param $elapsed
452
+     * @param double $elapsed
453 453
      */
454 454
     public function setElapsed($elapsed)
455 455
     {
Please login to merge, or discard this patch.
Tests/Model/WorkerTest.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -108,6 +108,11 @@
 block discarded – undo
108 108
         }
109 109
     }
110 110
 
111
+    /**
112
+     * @param integer|null $time
113
+     * @param string $method
114
+     * @param integer $priority
115
+     */
111 116
     protected function assertJob(Job $job, $time, $method, $priority = null)
112 117
     {
113 118
         $this->assertNotEmpty($job->getId(), 'Job should have an id');
Please login to merge, or discard this patch.