Skip to content

Commit 89822d4

Browse files
authored
Merge pull request #1 from koriym/spike
no purural form for constant
2 parents eba1df7 + 0547c27 commit 89822d4

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

src/MediaType.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
*/
88
namespace Koriym\HttpConstants;
99

10-
/**
11-
* Media Type
12-
*/
1310
final class MediaType
1411
{
1512
// generic

src/Method.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Koriym\HttpConstants;
99

1010
/**
11-
* HTTP Request Methods.
11+
* HTTP Request Methods
1212
*
1313
* @see http://www.ietf.org/rfc/rfc7231.txt
1414
*/

src/RequestHeaders.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* HTTP request header field names.
1212
*/
13-
final class RequestHeaders
13+
final class RequestHeader
1414
{
1515
// Standard (RFC) Request Fields
1616
const ACCEPT = 'Accept';

src/ResponseHeaders.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @see https://www.ietf.org/rfc/rfc2965.txt
1717
* @see https://www.ietf.org/rfc/rfc5998.txt
1818
*/
19-
final class ResponseHeaders
19+
final class ResponseHeader
2020
{
2121
// Standard (RFC) Response Fields
2222
const ACCESS_CONTROL_ALLOW_ORIGIN = 'Access-Control-Allow-Origin';

0 commit comments

Comments
 (0)