Skip to content

Commit 8e4629b

Browse files
Merge branch '6.2' into 6.3
* 6.2: CS fix Fix test provider
2 parents 65479a2 + cd85cc7 commit 8e4629b

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

Tests/Caster/MysqliCasterTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
/**
1818
* @requires extension mysqli
19+
*
1920
* @group integration
2021
*/
2122
class MysqliCasterTest extends TestCase

Tests/Caster/RdKafkaCasterTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
/**
2222
* @requires extension rdkafka
23+
*
2324
* @group integration
2425
*/
2526
class RdKafkaCasterTest extends TestCase

Tests/Caster/RedisCasterTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
/**
1818
* @author Nicolas Grekas <p@tchwork.com>
19+
*
1920
* @group integration
2021
*/
2122
class RedisCasterTest extends TestCase
@@ -49,7 +50,7 @@ public function testConnected(string $class)
4950
}
5051

5152
$redisHost = explode(':', getenv('REDIS_HOST')) + [1 => 6379];
52-
$redis = new $class;
53+
$redis = new $class();
5354
try {
5455
$redis->connect(...$redisHost);
5556
} catch (\Exception $e) {

0 commit comments

Comments
 (0)