Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jan 7, 2019
1 parent 5852c3f commit 695ffa1
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/Illuminate/Support/Testing/Fakes/QueueFake.php
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,16 @@ public function bulk($jobs, $data = '', $queue = null)
}
}

/**
* Get the jobs that have been pushed.
*
* @return array
*/
public function pushedJobs()
{
return $this->jobs;
}

/**
* Get the connection name for the queue.
*
Expand All @@ -347,14 +357,4 @@ public function setConnectionName($name)
{
return $this;
}

/**
* Get the jobs which have been pushed.
*
* @return array
*/
public function getJobs()
{
return $this->jobs;
}
}

0 comments on commit 695ffa1

Please sign in to comment.