Skip to content

docs: fix helpers.rst #5359

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 21, 2021
Merged
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/helpers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ code into its own namespace, ``Example\Blog``. The files exist on our server at
**/Modules/Blog/Helpers/blog_helper.php**. Within our controller we could
use the following command to load the helper for us::

helper('Modules\Blog\blog');
helper('Example\Blog\blog');

.. note:: The functions within files loaded this way are not truly namespaced.
The namespace is simply used as a convenient way to locate the files.
Expand Down