Skip to content

Commit

Permalink
Merge pull request #2343 from natanfelles/docs
Browse files Browse the repository at this point in the history
User guide minor fixes. Fix class names and code area.
  • Loading branch information
lonnieezell authored Oct 18, 2019
2 parents 5fd2b55 + 4c356d2 commit 3c52ee3
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion user_guide_src/source/cli/cli_commands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ The ``BaseCommand`` class that all commands must extend have a couple of helpful
be familiar with when creating your own commands. It also has a :doc:`Logger </general/logging>` available at
**$this->logger**.

.. php:class:: CodeIgniter\CLI\BaseCommand
.. php:class:: CodeIgniter\\CLI\\BaseCommand
.. php:method:: call(string $command[, array $params=[] ])
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/database/query_builder.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1218,7 +1218,7 @@ run the query::
Class Reference
***************

.. php:class:: \CodeIgniter\Database\BaseBuilder
.. php:class:: CodeIgniter\\Database\\BaseBuilder
.. php:method:: resetQuery()
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/database/results.rst
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ TRUE on success or FALSE on failure.
Class Reference
***************

.. php:class:: \CodeIgniter\Database\BaseResult
.. php:class:: CodeIgniter\\Database\\BaseResult
.. php:method:: getResult([$type = 'object'])
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/dbmgmt/forge.rst
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ change the name, you can add a "name" key into the field defining array.
Class Reference
***************

.. php:class:: \CodeIgniter\Database\Forge
.. php:class:: CodeIgniter\\Database\\Forge
.. php:method:: addColumn($table[, $field = []])
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/dbmgmt/migration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ Preference Default Options Des
Class Reference
***************

.. php:class:: CodeIgniter\Database\MigrationRunner
.. php:class:: CodeIgniter\\Database\\MigrationRunner
.. php:method:: findMigrations()
Expand Down
3 changes: 2 additions & 1 deletion user_guide_src/source/models/entities.rst
Original file line number Diff line number Diff line change
Expand Up @@ -374,5 +374,6 @@ attribute to check::
$user->name = 'Fred';
$user->hasChanged('name'); // true

Or to check the whole entity for changed values omit the parameter:
Or to check the whole entity for changed values omit the parameter::

$user->hasChanged(); // true

0 comments on commit 3c52ee3

Please sign in to comment.