1
0
Fork 0
mirror of synced 2024-06-02 10:54:44 +12:00

Update EventTest.php

This commit is contained in:
Mou Ikkai 2020-09-30 17:52:28 -04:00 committed by GitHub
parent 3e5eb134d2
commit 791d875eed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ class EventTest extends TestCase
*/
protected $queue = '';
public function setUp()
public function setUp(): void
{
$redisHost = App::getEnv('_APP_REDIS_HOST', '');
$redisPort = App::getEnv('_APP_REDIS_PORT', '');
@ -28,7 +28,7 @@ class EventTest extends TestCase
$this->object = new Event($this->queue, 'TestsV1');
}
public function tearDown()
public function tearDown(): void
{
}
@ -63,4 +63,4 @@ class EventTest extends TestCase
$this->assertEquals(null, $this->object->getParam('key2'));
$this->assertEquals(null, $this->object->getParam('key3'));
}
}
}