Skip to content

Commit

Permalink
fix comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
freyo committed May 22, 2019
1 parent 60feadf commit da51a99
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Queue/CMQQueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ public function size($queue = null)
* @param string $queue
*
* @return mixed
* @throws \ReflectionException
*/
public function push($job, $data = '', $queue = null)
{
Expand All @@ -108,7 +109,9 @@ public function push($job, $data = '', $queue = null)
* @param string $queue
* @param array $options
*
* @return mixed
* @return \Freyo\LaravelQueueCMQ\Queue\Driver\Message|array
* @throws \Freyo\LaravelQueueCMQ\Queue\Driver\CMQServerNetworkException
* @throws \Freyo\LaravelQueueCMQ\Queue\Driver\CMQServerException
*/
public function pushRaw($payload, $queue = null, array $options = [])
{
Expand Down Expand Up @@ -141,6 +144,7 @@ public function pushRaw($payload, $queue = null, array $options = [])
* @param string $queue
*
* @return mixed
* @throws \ReflectionException
*/
public function later($delay, $job, $data = '', $queue = null)
{
Expand Down

0 comments on commit da51a99

Please sign in to comment.