Skip to content

Commit 695ffa1

Browse files
committed
formatting
1 parent 5852c3f commit 695ffa1

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/Illuminate/Support/Testing/Fakes/QueueFake.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,16 @@ public function bulk($jobs, $data = '', $queue = null)
327327
}
328328
}
329329

330+
/**
331+
* Get the jobs that have been pushed.
332+
*
333+
* @return array
334+
*/
335+
public function pushedJobs()
336+
{
337+
return $this->jobs;
338+
}
339+
330340
/**
331341
* Get the connection name for the queue.
332342
*
@@ -347,14 +357,4 @@ public function setConnectionName($name)
347357
{
348358
return $this;
349359
}
350-
351-
/**
352-
* Get the jobs which have been pushed.
353-
*
354-
* @return array
355-
*/
356-
public function getJobs()
357-
{
358-
return $this->jobs;
359-
}
360360
}

0 commit comments

Comments
 (0)