File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11<?php
22/**
3- * Class Server
3+ * Class ServerUtil
44 *
55 * @created 29.03.2021
66 * @author smiley <smiley@chillerlan.net>
2121/**
2222 *
2323 */
24- class Server {
24+ class ServerUtil {
2525
2626 protected ServerRequestFactoryInterface $ serverRequestFactory ;
2727 protected UriFactoryInterface $ uriFactory ;
Original file line number Diff line number Diff line change 11<?php
22/**
3- * Class FactoryHelpersTest
3+ * Class ServerUtilTest
44 *
55 * @created 31.01.2019
66 * @author smiley <smiley@chillerlan.net>
1010
1111namespace chillerlan \HTTPTest \Utils ;
1212
13- use chillerlan \HTTP \Utils \Server ;
13+ use chillerlan \HTTP \Utils \ServerUtil ;
1414use InvalidArgumentException ;
1515
1616use function time ;
1717use 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 ,
You can’t perform that action at this time.
0 commit comments