Update composer

This commit is contained in:
Daniel Mason 2022-02-08 19:08:07 +13:00
parent 80d64e79ff
commit dd0bb8947f
16 changed files with 152 additions and 143 deletions

View file

@ -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

View file

@ -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);
}

View file

@ -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()