From 0d8f818cbfea4d289937924a29c2930d36198a80 Mon Sep 17 00:00:00 2001 From: kenjis Date: Wed, 15 Jun 2022 12:07:25 +0900 Subject: [PATCH] docs: fix DBQuery explanation --- user_guide_src/source/extending/events.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_guide_src/source/extending/events.rst b/user_guide_src/source/extending/events.rst index aa4f99e797c8..bdc43bfbc0bd 100644 --- a/user_guide_src/source/extending/events.rst +++ b/user_guide_src/source/extending/events.rst @@ -91,5 +91,5 @@ The following is a list of available event points within the CodeIgniter core co * **post_controller_constructor** Called immediately after your controller is instantiated, but prior to any method calls happening. * **post_system** Called after the final rendered page is sent to the browser, at the end of system execution after the finalized data is sent to the browser. * **email** Called after an email sent successfully from ``CodeIgniter\Email\Email``. Receives an array of the ``Email`` class's properties as a parameter. -* **DBQuery** Called after a successfully-completed database query. Receives the ``Query`` object. +* **DBQuery** Called after a database query whether successful or not. Receives the ``Query`` object. * **migrate** Called after a successful migration call to ``latest()`` or ``regress()``. Receives the current properties of ``MigrationRunner`` as well as the name of the method.