Skip to content

Commit 3c52ee3

Browse files
authored
Merge pull request #2343 from natanfelles/docs
User guide minor fixes. Fix class names and code area.
2 parents 5fd2b55 + 4c356d2 commit 3c52ee3

6 files changed

Lines changed: 7 additions & 6 deletions

File tree

user_guide_src/source/cli/cli_commands.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ The ``BaseCommand`` class that all commands must extend have a couple of helpful
144144
be familiar with when creating your own commands. It also has a :doc:`Logger </general/logging>` available at
145145
**$this->logger**.
146146

147-
.. php:class:: CodeIgniter\CLI\BaseCommand
147+
.. php:class:: CodeIgniter\\CLI\\BaseCommand
148148
149149
.. php:method:: call(string $command[, array $params=[] ])
150150

user_guide_src/source/database/query_builder.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1218,7 +1218,7 @@ run the query::
12181218
Class Reference
12191219
***************
12201220

1221-
.. php:class:: \CodeIgniter\Database\BaseBuilder
1221+
.. php:class:: CodeIgniter\\Database\\BaseBuilder
12221222
12231223
.. php:method:: resetQuery()
12241224

user_guide_src/source/database/results.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ TRUE on success or FALSE on failure.
329329
Class Reference
330330
***************
331331

332-
.. php:class:: \CodeIgniter\Database\BaseResult
332+
.. php:class:: CodeIgniter\\Database\\BaseResult
333333
334334
.. php:method:: getResult([$type = 'object'])
335335

user_guide_src/source/dbmgmt/forge.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ change the name, you can add a "name" key into the field defining array.
348348
Class Reference
349349
***************
350350

351-
.. php:class:: \CodeIgniter\Database\Forge
351+
.. php:class:: CodeIgniter\\Database\\Forge
352352
353353
.. php:method:: addColumn($table[, $field = []])
354354

user_guide_src/source/dbmgmt/migration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ Preference Default Options Des
270270
Class Reference
271271
***************
272272

273-
.. php:class:: CodeIgniter\Database\MigrationRunner
273+
.. php:class:: CodeIgniter\\Database\\MigrationRunner
274274
275275
.. php:method:: findMigrations()
276276

user_guide_src/source/models/entities.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,5 +374,6 @@ attribute to check::
374374
$user->name = 'Fred';
375375
$user->hasChanged('name'); // true
376376

377-
Or to check the whole entity for changed values omit the parameter:
377+
Or to check the whole entity for changed values omit the parameter::
378+
378379
$user->hasChanged(); // true

0 commit comments

Comments
 (0)