Skip to content

Commit a9867e4

Browse files
authored
Merge pull request #92 from froschdesign/docs/hotfix/navigation-and-headings
Refactor navigation and headings for clarity
2 parents 6440d57 + b614009 commit a9867e4

File tree

7 files changed

+15
-16
lines changed

7 files changed

+15
-16
lines changed

docs/book/client/adapters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# HTTP Client Connection Adapters
1+
# Connection Adapters
22

33
`Laminas\Http\Client` is based on a connection adapter design. The connection adapter is the object in
44
charge of performing the actual connection to the server, as well as writing requests and reading

docs/book/client/advanced.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# HTTP Client Advanced Usage
1+
# Advanced Usage
22

33
## HTTP redirections
44

docs/book/client/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# HTTP Client
1+
# Introduction
22

33
`Laminas\Http\Client` provides an interface for performing Hyper-Text Transfer
44
Protocol (HTTP) requests. `Laminas\Http\Client` supports all basic features

docs/book/client/static.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# HTTP Client - Static Usage
1+
# Static Usage
22

33
laminas-http provides another client implementation, `Laminas\Http\ClientStatic`, a
44
static HTTP client which exposes a simplified API for quickly performing one-off `GET`

docs/book/request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# The Request Class
1+
# Request
22

33
`Laminas\Http\Request` is responsible for providing a fluent API that allows a
44
developer to interact with all the various parts of an HTTP request.

docs/book/response.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# The Response Class
1+
# Response
22

33
`Laminas\Http\Response` is responsible for providing a fluent API that allows a
44
developer to interact with all the various parts of an HTTP response.

mkdocs.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@ site_dir: docs/html
33
nav:
44
- Home: index.md
55
- Introduction: intro.md
6-
- Reference:
7-
- Request: request.md
8-
- Response: response.md
9-
- Headers: headers.md
10-
- Client:
11-
- Intro: client/intro.md
12-
- Adapters: client/adapters.md
13-
- "Static Client": client/static.md
14-
- "Cookie Persistence": client/cookies.md
15-
- Advanced: client/advanced.md
6+
- Request: request.md
7+
- Response: response.md
8+
- Headers: headers.md
9+
- "HTTP Client":
10+
- Introduction: client/intro.md
11+
- "Connection Adapters": client/adapters.md
12+
- "Static Usage": client/static.md
13+
- "Client Cookies": client/cookies.md
14+
- "Advanced Usage": client/advanced.md
1615
site_name: laminas-http
1716
site_description: HTTP message and header abstractions, and HTTP client implementation. (Not a PSR-7 implementation; see <a href="//docs.laminas.dev/laminas-diactoros">Diactoros</a> for PSR-7 support.
1817
repo_url: 'https://github.com/laminas/laminas-http'

0 commit comments

Comments
 (0)