Skip to content

Commit 1b37b79

Browse files
committed
Update README.md
1 parent 62a903d commit 1b37b79

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# HTTP
22

3-
[![Build Status](https://travis-ci.org/symplely/http.svg?branch=master)](https://travis-ci.org/symplely/http)[![Build status](https://ci.appveyor.com/api/projects/status/o86w2h4990x7ehk7/branch/master?svg=true)](https://ci.appveyor.com/project/techno-express/http/branch/master)[![codecov](https://codecov.io/gh/symplely/http/branch/master/graph/badge.svg)](https://codecov.io/gh/symplely/http)[![Codacy Badge](https://api.codacy.com/project/badge/Grade/e18e2135abaf49f2b0fd9bf8d29c519d)](https://www.codacy.com/app/techno-express/http?utm_source=github.com&utm_medium=referral&utm_content=symplely/http&utm_campaign=Badge_Grade)[![Maintainability](https://api.codeclimate.com/v1/badges/eb6c23530d8c9f864f16/maintainability)](https://codeclimate.com/github/symplely/http/maintainability)
3+
[![build](https://github.com/symplely/http/actions/workflows/php.yml/badge.svg)](https://github.com/symplely/http/actions/workflows/php.yml)[![codecov](https://codecov.io/gh/symplely/http/branch/master/graph/badge.svg)](https://codecov.io/gh/symplely/http)[![Codacy Badge](https://api.codacy.com/project/badge/Grade/e18e2135abaf49f2b0fd9bf8d29c519d)](https://www.codacy.com/app/techno-express/http?utm_source=github.com&utm_medium=referral&utm_content=symplely/http&utm_campaign=Badge_Grade)[![Maintainability](https://api.codeclimate.com/v1/badges/eb6c23530d8c9f864f16/maintainability)](https://codeclimate.com/github/symplely/http/maintainability)
44

55
An complete [PSR-7](https://www.php-fig.org/psr/psr-7/) *Request*/*Response* implementation, with *Cookie*, and *Session* management/middleware.
66

@@ -647,7 +647,7 @@ Returns a new instance with the specified fragment.
647647

648648
## Cookies
649649

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.
651651

652652
These classes are a merge and rework of repo [dflydev-fig-cookies
653653
](https://github.com/dflydev/dflydev-fig-cookies).
@@ -709,7 +709,7 @@ primitive Cookies classes. Their jobs are to make common cookie related
709709
tasks easier and less verbose than working with the primitive classes directly.
710710

711711
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
713713
process so be wary of using too many of these calls in the same section of
714714
code. In some cases it may be better to work with the primitive classes
715715
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
924924
* `Sessions::close()` close session saving its contents, will also auto update $_SESSION on script shutdown, or __destruct.
925925
* `Sessions::destroy()` destroy session and all its contents
926926

927-
___Session Middleware___
927+
_**Session Middleware**_
928928

929929
The same instance also comes with a middleware handler which you can use to automatically initialize session, and write session cookie to response.
930930

0 commit comments

Comments
 (0)