Skip to content

Commit 7e3c9fc

Browse files
authored
Apply fixes from StyleCI (#14)
1 parent 03e2bb0 commit 7e3c9fc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/LaravelQueueCMQServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function register()
1919
if ($this->app instanceof LumenApplication) {
2020
$this->app->configure('queue');
2121
}
22-
22+
2323
$this->mergeConfigFrom(
2424
__DIR__.'/../config/cmq.php', 'queue.connections.cmq'
2525
);

src/Queue/CMQQueue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public function later($delay, $job, $data = '', $queue = null)
141141
$delay = method_exists($this, 'getSeconds')
142142
? $this->getSeconds($delay)
143143
: $this->secondsUntil($delay);
144-
144+
145145
return $this->pushRaw($payload, $queue, ['delay' => $delay]);
146146
}
147147

src/Queue/Contracts/PlainPayload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ interface PlainPayload
1010
* @return string
1111
*/
1212
public function getPayload();
13-
}
13+
}

0 commit comments

Comments
 (0)