Skip to content

Commit 4b88f3d

Browse files
committed
Add public visibility modifier on constant
1 parent 5a52355 commit 4b88f3d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/Server.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
<?php
2+
/**
3+
* @author Pierre-Henry Soria <hi@ph7.me>
4+
* @license MIT License
5+
*/
6+
7+
declare(strict_types=1);
28

39
namespace PH7\PhpHttpResponseHeader;
410

511
final class Server
612
{
7-
const SERVER_PROTOCOL = 'SERVER_PROTOCOL';
13+
public const SERVER_PROTOCOL = 'SERVER_PROTOCOL';
814

915
/**
1016
* Retrieve a member of the $_SERVER super global.

0 commit comments

Comments
 (0)