Skip to content

Commit 8326584

Browse files
committed
ResponseParserTrait >> RequestParserTrait
1 parent fe02a7a commit 8326584

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/VerifierServer/Endpoints/ResponseParserTrait.php renamed to src/VerifierServer/Endpoints/RequestParserTrait.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
namespace VerifierServer\Endpoints;
44

55
/**
6-
* Trait ResponseParserTrait
6+
* Trait RequestParserTrait
77
*
88
* Provides functionality to parse data from a raw HTTP request string.
99
*
1010
* @package VerifierServer\Endpoints
1111
*/
12-
trait ResponseParserTrait
12+
trait RequestParserTrait
1313
{
1414
/**
1515
* Parses the headers from a raw HTTP request string.

src/VerifierServer/Endpoints/VerifiedEndpoint.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
*/
4747
class VerifiedEndpoint implements EndpointInterface
4848
{
49-
use ResponseParserTrait;
49+
use RequestParserTrait;
5050

5151
public function __construct(private PersistentState &$state)
5252
{}

0 commit comments

Comments
 (0)