-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[HttpServer] WIP: Add TraditionalServerRequestBuilderTest
- Loading branch information
1 parent
96541e5
commit a4f1365
Showing
11 changed files
with
885 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phive xmlns="https://phar.io/phive"> | ||
<phar name="friendsofphp/php-cs-fixer" version="^3.62.0" installed="3.62.0" location="./tools/php-cs-fixer" copy="false"/> | ||
<phar name="phpstan/phpstan" version="^1.11.10" installed="1.11.10" location="./tools/phpstan" copy="false"/> | ||
<phar name="friendsofphp/php-cs-fixer" version="^3.62.0" installed="3.63.1" location="./tools/php-cs-fixer" copy="false"/> | ||
<phar name="phpstan/phpstan" version="^1.11.10" installed="1.12.0" location="./tools/phpstan" copy="false"/> | ||
<phar name="vimeo/psalm" version="^5.25.0" installed="5.25.0" location="./tools/psalm" copy="false"/> | ||
</phive> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ | |
/** | ||
* @author Masaru Yamagishi <[email protected]> | ||
* @license Apache-2.0 | ||
* @codeCoverageIgnoreFile because all of methods are wrapper of PHP built-in functions | ||
*/ | ||
|
||
namespace Rayleigh\HttpServer; | ||
|
@@ -15,6 +14,7 @@ | |
/** | ||
* Header and body emitter function wrapper | ||
* @package Rayleigh\HttpServer | ||
* @codeCoverageIgnore because all of methods are wrapper of PHP built-in functions | ||
*/ | ||
/* final readonly */ class Emitter | ||
{ | ||
|
Oops, something went wrong.