Skip to content

Commit 8fc8985

Browse files
authored
Merge pull request #8897 from kenjis/docs-modules.rst
docs: update modules.rst
2 parents f927928 + 1af5192 commit 8fc8985

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

user_guide_src/source/concepts/factories.rst

+2
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ The following code loads **app/Libraries/Sub/SubLib.php** if it exists:
8686
.. literalinclude:: factories/013.php
8787
:lines: 2-
8888

89+
.. _factories-passing-fully-qualified-classname:
90+
8991
Passing Fully Qualified Classname
9092
---------------------------------
9193

user_guide_src/source/general/modules.rst

+8-5
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,8 @@ You can specify namespaces. See :ref:`helpers-loading-from-specified-namespace`
251251
Language Files
252252
==============
253253

254-
Language files are located automatically from defined namespaces when using the ``lang()`` method, as long as the
254+
Language files are located automatically from defined namespaces when using the
255+
:php:func:`lang()` function, as long as the
255256
file follows the same directory structures as the main application directory.
256257

257258
Libraries
@@ -272,13 +273,15 @@ Model files are automatically discovered whenever using the :php:func:`model()`
272273

273274
.. note:: We don't recommend you use the same short classname in modules.
274275

275-
.. note:: ``model()`` finds the file in **app/Models/** when there is a class with the same shortname,
276-
even if you specify a fully qualified class name like ``model(\Acme\Blog\Model\PostModel::class)``.
277-
This is because ``model()`` is a wrapper for the ``Factories`` class which uses ``preferApp`` by default. See :ref:`factories-loading-class` for more information.
276+
.. note:: Prior to v4.4.0, ``model()`` finds the file in **app/Models/** when
277+
there is a class with the same shortname, even if you specify a fully qualified
278+
class name like ``model(\Acme\Blog\Model\PostModel::class)``.
279+
See the Note in :ref:`factories-passing-fully-qualified-classname` for more
280+
information.
278281

279282
Views
280283
=====
281284

282-
Views can be loaded using the class namespace as described in the :doc:`views </outgoing/views>` documentation:
285+
Views can be loaded using the class namespace as described in the :ref:`views <namespaced-views>` documentation:
283286

284287
.. literalinclude:: modules/012.php

user_guide_src/source/outgoing/views.rst

+2
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ When doing so you will need to include the directory name loading the view. Exam
8686
.. literalinclude:: views/004.php
8787
:lines: 2-
8888

89+
.. _namespaced-views:
90+
8991
Namespaced Views
9092
================
9193

0 commit comments

Comments
 (0)