@@ -80,7 +80,7 @@ |
||
80 | 80 | $pipeline = $this->getRedis()->pipeline(['fire-and-forget' => true]); |
81 | 81 | if (empty($job->timestamp)) { |
82 | 82 | // immediate execution in background |
83 | - $pipeline->lpush(self::QUEUE_IMMEDIATE, $job->jobId . '#' . $serialized); |
|
83 | + $pipeline->lpush(self::QUEUE_IMMEDIATE, $job->jobId.'#'.$serialized); |
|
84 | 84 | } else { |
85 | 85 | // delayed execution |
86 | 86 | $pipeline->hset(self::META_DATA, $job->jobId, $serialized); |
@@ -52,7 +52,7 @@ |
||
52 | 52 | $dumper = new GraphvizDumper($dic); |
53 | 53 | $content = $dumper->dump(); |
54 | 54 | |
55 | - file_put_contents(ROOT . 'cache/dic.gv', $content); |
|
55 | + file_put_contents(ROOT.'cache/dic.gv', $content); |
|
56 | 56 | exec('dot -Tpng cache/dic.gv -o cache/graph.png; rm cache/dic.gv'); |
57 | 57 | |
58 | 58 | $output->writeln('PNG: <info>cache/graph.png</info>'); |