Skip to content

Commit c4c6548

Browse files
committed
ci: add tests for PHP 8.5
1 parent 3d7496a commit c4c6548

8 files changed

+8
-8
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* @author GeLo <geloen.eric@gmail.com>
1414
*/
15-
abstract class AbstractHttpAdapterTest extends HttpClientTest
15+
abstract class AbstractHttpAdapter extends HttpClientTest
1616
{
1717
protected function createHttpAdapter(): ClientInterface
1818
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* @author Joel Wurtz <joel.wurtz@gmail.com>
1414
*/
15-
abstract class AbstractHttpAsyncAdapterTest extends HttpAsyncClientTest
15+
abstract class AbstractHttpAsyncAdapter extends HttpAsyncClientTest
1616
{
1717
protected function createHttpAsyncClient(): HttpAsyncClient
1818
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* @author GeLo <geloen.eric@gmail.com>
1111
*/
12-
class CurlHttpAdapterTest extends AbstractHttpAdapterTest
12+
class CurlHttpAdapter extends AbstractHttpAdapter
1313
{
1414
protected function createHandler()
1515
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* @author Joel Wurtz <joel.wurtz@gmail.com>
1111
*/
12-
class CurlHttpAsyncAdapterTest extends AbstractHttpAsyncAdapterTest
12+
class CurlHttpAsyncAdapter extends AbstractHttpAsyncAdapter
1313
{
1414
protected function createHandler()
1515
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* @author GeLo <geloen.eric@gmail.com>
1111
*/
12-
class MultiCurlHttpAdapterTest extends AbstractHttpAdapterTest
12+
class MultiCurlHttpAdapter extends AbstractHttpAdapter
1313
{
1414
protected function createHandler()
1515
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* @author Joel Wurtz <joel.wurtz@gmail.com>
1111
*/
12-
class MultiCurlHttpAsyncAdapterTest extends AbstractHttpAsyncAdapterTest
12+
class MultiCurlHttpAsyncAdapter extends AbstractHttpAsyncAdapter
1313
{
1414
protected function createHandler()
1515
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* @author GeLo <geloen.eric@gmail.com>
1111
*/
12-
class StreamHttpAdapterTest extends AbstractHttpAdapterTest
12+
class StreamHttpAdapter extends AbstractHttpAdapter
1313
{
1414
protected function createHandler()
1515
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* @author Joel Wurtz <joel.wurtz@gmail.com>
1111
*/
12-
class StreamHttpAsyncAdapterTest extends AbstractHttpAsyncAdapterTest
12+
class StreamHttpAsyncAdapter extends AbstractHttpAsyncAdapter
1313
{
1414
protected function createHandler()
1515
{

0 commit comments

Comments
 (0)