mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 21:52:21 +00:00
Update composer
This commit is contained in:
parent
80d64e79ff
commit
dd0bb8947f
16 changed files with 152 additions and 143 deletions
|
@ -397,7 +397,6 @@ class JobTest extends TestCase
|
|||
|
||||
class SomeJobClass implements \Resque\Job\JobInterface
|
||||
{
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
|
@ -409,7 +408,6 @@ class SomeJobClass implements \Resque\Job\JobInterface
|
|||
|
||||
class Some_Stub_Factory implements \Resque\Job\FactoryInterface
|
||||
{
|
||||
|
||||
/**
|
||||
* @param $className
|
||||
* @param array $args
|
||||
|
|
|
@ -14,7 +14,7 @@ class RedisTest extends TestCase
|
|||
{
|
||||
public function testRedisGetSet()
|
||||
{
|
||||
$this->redis->set("testKey", 24);
|
||||
$this->redis->setex("testKey", 3600, 24);
|
||||
$val = $this->redis->get("testKey");
|
||||
$this->assertEquals(24, $val);
|
||||
}
|
||||
|
|
|
@ -45,7 +45,6 @@ class TestJob
|
|||
|
||||
class FailingJobException extends \Exception
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
class FailingJob
|
||||
|
@ -58,7 +57,6 @@ class FailingJob
|
|||
|
||||
class TestJobWithoutPerformMethod
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
class TestJobWithSetUp
|
||||
|
@ -73,7 +71,6 @@ class TestJobWithSetUp
|
|||
|
||||
public function perform()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -85,7 +82,6 @@ class TestJobWithTearDown
|
|||
|
||||
public function perform()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function tearDown()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue