Test Failed
Pull Request — master (#56)
by
unknown
02:51
created
lib/Worker/ResqueWorker.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@
 block discarded – undo
34 34
 	private static $processPrefix = 'resque';
35 35
 
36 36
 	/**
37
-	* @var \Psr\Log\LoggerInterface Logging object that impliments the PSR-3 LoggerInterface
38
-	*/
37
+	 * @var \Psr\Log\LoggerInterface Logging object that impliments the PSR-3 LoggerInterface
38
+	 */
39 39
 	public $logger;
40 40
 
41 41
 	/**
Please login to merge, or discard this patch.
demo/queue.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 if (empty($argv[2])) {
21 21
 	$jobId = \Resque\Resque::enqueue('default', $argv[1], $args, true);
22 22
 } else {
23
-        $jobId = \Resque\Resque::enqueue($argv[1], $argv[2], $args, true);
23
+		$jobId = \Resque\Resque::enqueue($argv[1], $argv[2], $args, true);
24 24
 }
25 25
 
26 26
 echo "Queued job ".$jobId."\n\n";
Please login to merge, or discard this patch.