Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion user_guide_src/source/general/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ the application configuration files in the **app/Config** folder.
:local:
:depth: 2

Working With Configuration Files
Working with Configuration Files
********************************

You can access configuration files for your classes in several different ways.
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/general/logging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Each handler's section will have one property in common: ``handles``, which is a

.. literalinclude:: logging/004.php

Modifying the Message With Context
Modifying the Message with Context
==================================

You will often want to modify the details of your message based on the context of the event being logged.
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/libraries/uploaded_files.rst
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ In controller:
.. note:: Using ``getFiles()`` is more appropriate.

*********************
Working With the File
Working with the File
*********************

Once you've retrieved the UploadedFile instance, you can retrieve information about the file in safe ways, as well as
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/models/entities.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ are handled automatically by the class or the database, so we don't want to chan
class as the ``$returnType``. This ensures that all methods on the model that return rows from the database will return
instances of our User Entity class instead of an object or array like normal.

Working With the Entity Class
Working with the Entity Class
-----------------------------

Now that all of the pieces are in place, you would work with the Entity class as you would any other class:
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/outgoing/localization.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Localization
:depth: 3

********************
Working With Locales
Working with Locales
********************

CodeIgniter provides several tools to help you localize your application for different languages. While full
Expand Down
4 changes: 2 additions & 2 deletions user_guide_src/source/testing/response.rst
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ Asserts that an input tag exists with the name and value:

.. literalinclude:: response/029.php

Working With JSON
Working with JSON
=================

Responses will frequently contain JSON responses, especially when working with API methods. The following methods
Expand Down Expand Up @@ -280,7 +280,7 @@ assertJSONExact($test)

Similar to ``assertJSONFragment()``, but checks the entire JSON response to ensure exact matches.

Working With XML
Working with XML
================

getXML()
Expand Down