Skip to content

Commit e44b60c

Browse files
committed
Consistency tuning
1 parent 300a174 commit e44b60c

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

user_guide_src/source/general/cli.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ As well as calling an applications :doc:`Controllers <./controllers>`
66
via the URL in a browser they can also be loaded via the command-line
77
interface (CLI).
88

9-
.. contents:: Page Contents
9+
.. contents::
10+
:local:
11+
:depth: 2
1012

1113
What is the CLI?
1214
================

user_guide_src/source/general/controllers.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -243,23 +243,23 @@ Included Properties
243243
Every controller you create should extend ``CodeIgniter\Controller`` class.
244244
This class provides several features that are available to all of your controllers.
245245

246-
Request Object
247-
--------------
246+
**Request Object**
247+
248248
The application's main :doc:`Request Instance <../libraries/request>` is always available
249249
as a class property, ``$this->request``.
250250

251-
Response Object
252-
---------------
251+
**Response Object**
252+
253253
The application's main :doc:`Response Instance <../libraries/response>` is always available
254254
as a class property, ``$this->response``.
255255

256-
Logger Object
257-
-------------
256+
**Logger Object**
257+
258258
An instance of the :doc:`Logger <../general/logging>` class is available as a class property,
259259
``$this->logger``.
260260

261-
forceHTTPS
262-
----------
261+
**forceHTTPS**
262+
263263
A convenience method for forcing a method to be accessed via HTTPS is available within all
264264
controllers::
265265

user_guide_src/source/general/filters.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,7 @@ a list of URI patterns that filter should apply to::
177177
'bar' => ['before' => ['api/*', 'admin/*']]
178178
];
179179

180-
================
181180
Provided Filters
182-
================
181+
****************
183182

184183
Three filters are bundled with CodeIgniter4: Honeypot, Security, and Throttler.

user_guide_src/source/general/view_renderer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Several options can be passed to the ``render()`` or ``renderString()`` methods:
100100
- ``saveData`` - true if the view data parameters should be retained for subsequent calls
101101

102102
Class Reference
103-
---------------
103+
===============
104104

105105
.. php:class:: CodeIgniter\\View\\View
106106

user_guide_src/source/libraries/api_responses.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,8 @@ So, if your request asks for JSON formatted data in an **Accept** header, the da
9898
``respond*`` or ``fail*`` methods will be formatted by the **CodeIgniter\\API\\JSONFormatter** class. The resulting
9999
JSON data will be sent back to the client.
100100

101-
===============
102101
Class Reference
103-
===============
102+
***************
104103

105104
.. php:method:: respond($data[, $statusCode=200[, $message='']])
106105

user_guide_src/source/libraries/time.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ is the **Time** class and lives in the **CodeIgniter\\I18n** namespace.
1111

1212
.. contents::
1313
:local:
14-
:depth: 2
14+
:depth: 1
1515

1616
=============
1717
Instantiating

0 commit comments

Comments
 (0)