|
1 | 1 | # HTTP |
2 | 2 |
|
3 | | -[](https://travis-ci.org/symplely/http)[](https://ci.appveyor.com/project/techno-express/http/branch/master)[](https://codecov.io/gh/symplely/http)[](https://www.codacy.com/app/techno-express/http?utm_source=github.com&utm_medium=referral&utm_content=symplely/http&utm_campaign=Badge_Grade)[](https://codeclimate.com/github/symplely/http/maintainability) |
| 3 | +[](https://github.com/symplely/http/actions/workflows/php.yml)[](https://codecov.io/gh/symplely/http)[](https://www.codacy.com/app/techno-express/http?utm_source=github.com&utm_medium=referral&utm_content=symplely/http&utm_campaign=Badge_Grade)[](https://codeclimate.com/github/symplely/http/maintainability) |
4 | 4 |
|
5 | 5 | An complete [PSR-7](https://www.php-fig.org/psr/psr-7/) *Request*/*Response* implementation, with *Cookie*, and *Session* management/middleware. |
6 | 6 |
|
@@ -647,7 +647,7 @@ Returns a new instance with the specified fragment. |
647 | 647 |
|
648 | 648 | ## Cookies |
649 | 649 |
|
650 | | -Cookies handles two problems, managing `Cookie` Request headers and managing `Set-Cookie` Response headers. It does this by way of introducing a _Cookies_ class to manage collections of **Cookie** instances and a _SetCookies_ class to manage collections of **SetCookie** instances. |
| 650 | +Cookies handles two problems, managing `Cookie` Request headers and managing `Set-Cookie` Response headers. It does this by way of introducing a *Cookies* class to manage collections of **Cookie** instances and a *SetCookies* class to manage collections of **SetCookie** instances. |
651 | 651 |
|
652 | 652 | These classes are a merge and rework of repo [dflydev-fig-cookies |
653 | 653 | ](https://github.com/dflydev/dflydev-fig-cookies). |
@@ -709,7 +709,7 @@ primitive Cookies classes. Their jobs are to make common cookie related |
709 | 709 | tasks easier and less verbose than working with the primitive classes directly. |
710 | 710 |
|
711 | 711 | There is overhead on creating `Cookies` and `SetCookies` and rebuilding |
712 | | -_requests_ and _responses_. Each of these methods will go through this |
| 712 | +*requests* and *responses*. Each of these methods will go through this |
713 | 713 | process so be wary of using too many of these calls in the same section of |
714 | 714 | code. In some cases it may be better to work with the primitive classes |
715 | 715 | directly rather than using the facades. |
@@ -924,7 +924,7 @@ You can also pass a [cache expire](http://php.net/session_cache_expire) value, i |
924 | 924 | * `Sessions::close()` close session saving its contents, will also auto update $_SESSION on script shutdown, or __destruct. |
925 | 925 | * `Sessions::destroy()` destroy session and all its contents |
926 | 926 |
|
927 | | -___Session Middleware___ |
| 927 | +_**Session Middleware**_ |
928 | 928 |
|
929 | 929 | The same instance also comes with a middleware handler which you can use to automatically initialize session, and write session cookie to response. |
930 | 930 |
|
|
0 commit comments