Skip to content

Commit 3f4fb02

Browse files
committed
:octocat: renamed Server -> ServerUtil
1 parent 67c4807 commit 3f4fb02

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/Server.php renamed to src/ServerUtil.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Class Server
3+
* Class ServerUtil
44
*
55
* @created 29.03.2021
66
* @author smiley <smiley@chillerlan.net>
@@ -21,7 +21,7 @@
2121
/**
2222
*
2323
*/
24-
class Server{
24+
class ServerUtil{
2525

2626
protected ServerRequestFactoryInterface $serverRequestFactory;
2727
protected UriFactoryInterface $uriFactory;

tests/FactoryHelpersTest.php renamed to tests/ServerUtilTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Class FactoryHelpersTest
3+
* Class ServerUtilTest
44
*
55
* @created 31.01.2019
66
* @author smiley <smiley@chillerlan.net>
@@ -10,20 +10,20 @@
1010

1111
namespace chillerlan\HTTPTest\Utils;
1212

13-
use chillerlan\HTTP\Utils\Server;
13+
use chillerlan\HTTP\Utils\ServerUtil;
1414
use InvalidArgumentException;
1515

1616
use function time;
1717
use const UPLOAD_ERR_OK, UPLOAD_ERR_PARTIAL;
1818

19-
class FactoryHelpersTest extends TestAbstract{
19+
class ServerUtilTest extends TestAbstract{
2020

21-
protected Server $server;
21+
protected ServerUtil $server;
2222

2323
protected function setUp():void{
2424
parent::setUp();
2525

26-
$this->server = new Server(
26+
$this->server = new ServerUtil(
2727
$this->serverRequestFactory,
2828
$this->uriFactory,
2929
$this->uploadedFileFactory,

0 commit comments

Comments
 (0)