mirror of
https://github.com/idanoo/php-resque
synced 2025-06-30 21:22:20 +00:00
method comment changes
This commit is contained in:
parent
ef859b6fc5
commit
3b59fa5dbc
1 changed files with 6 additions and 4 deletions
|
@ -61,6 +61,7 @@ class Resque_Worker
|
|||
|
||||
/**
|
||||
* Return all workers known to Resque as instantiated instances.
|
||||
* @return array
|
||||
*/
|
||||
public static function all()
|
||||
{
|
||||
|
@ -228,11 +229,12 @@ class Resque_Worker
|
|||
/**
|
||||
* Process a single job.
|
||||
*
|
||||
* @param object|null $job The job to be processed.
|
||||
* @param Resque_Job $job The job to be processed.
|
||||
*/
|
||||
public function perform(Resque_Job $job)
|
||||
{
|
||||
try {
|
||||
$this->log("afterFork being triggered", self::LOG_VERBOSE);
|
||||
Resque_Event::trigger('afterFork', $job);
|
||||
$job->perform();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue