Skip to content

Commit 8991d69

Browse files
committed
Fixed CS issues
1 parent e5809f3 commit 8991d69

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

tests/Elasticsearch/Tests/ConnectionPool/StaticConnectionPoolIntegrationTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ public function setUp()
2929
$this->host = Utility::getHost();
3030
if (null == $this->host) {
3131
$this->markTestSkipped(sprintf(
32-
"I cannot execute %s without TEST_SUITE env", __CLASS__
32+
"I cannot execute %s without TEST_SUITE env",
33+
__CLASS__
3334
));
3435
}
3536
}

tests/Elasticsearch/Tests/Utility.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class Utility
88
{
9-
static public function getHost(): ?string
9+
public static function getHost(): ?string
1010
{
1111
switch (getenv('TEST_SUITE')) {
1212
case 'oss':
@@ -16,4 +16,4 @@ static public function getHost(): ?string
1616
}
1717
return null;
1818
}
19-
}
19+
}

0 commit comments

Comments
 (0)