Test Failed
Push — master ( 2afe43...aa7db2 )
by Damjan
05:06
created
src/Serializer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      * Serialize and normalize job data
13 13
      *
14 14
      * @param string        $jobId
15
-     * @param object|string $class
15
+     * @param string $class
16 16
      * @param array         $args
17 17
      * @param bool          $retry
18 18
      *
Please login to merge, or discard this patch.
examples/bulk.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 $jobs = [
12 12
     ['class' => 'ProcessImage', 'args' => [['url' => 'http://i.imgur.com/hlAsa4k.jpg'], true, 12]],
13 13
     ['class' => 'ProcessImage', 'args' => [['url' => 'http://i.imgur.com/hlAsa4k.jpg'], true, null]],
14
-    ['class' => 'ProcessImage', 'args' => [['url' => 'http://i.imgur.com/hlAsa4k.jpg']], 'at' => microtime(true)+60*6, 'retry' => false]
14
+    ['class' => 'ProcessImage', 'args' => [['url' => 'http://i.imgur.com/hlAsa4k.jpg']], 'at' => microtime(true) + 60*6, 'retry' => false]
15 15
 ];
16 16
 
17 17
 // push jobs to a different queue
Please login to merge, or discard this patch.
examples/basic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 include __DIR__.'/../vendor/autoload.php';
3
-function _print($id, $retry){
3
+function _print($id, $retry) {
4 4
     var_dump(sprintf('Pushed job with id %s and retry:%d', $id, $retry));
5 5
 }
6 6
 
Please login to merge, or discard this patch.