mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 13:42:22 +00:00
2.1.0 (2023-02-07) - PHP 8.2 compatibility
This commit is contained in:
parent
ef82313d4e
commit
3c7e20e364
11 changed files with 200 additions and 15 deletions
|
@ -397,6 +397,11 @@ class JobTest extends TestCase
|
|||
|
||||
class SomeJobClass implements \Resque\Job\JobInterface
|
||||
{
|
||||
public static $called = false;
|
||||
public $args = false;
|
||||
public $queue;
|
||||
public $job;
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
|
@ -408,6 +413,11 @@ class SomeJobClass implements \Resque\Job\JobInterface
|
|||
|
||||
class Some_Stub_Factory implements \Resque\Job\FactoryInterface
|
||||
{
|
||||
public static $called = false;
|
||||
public $args = false;
|
||||
public $queue;
|
||||
public $job;
|
||||
|
||||
/**
|
||||
* @param $className
|
||||
* @param array $args
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue