Skip to content

Commit fe29651

Browse files
author
obozdag
authored
docs: Small typo in factories.rst
Small typo in factories.rst. Change all "full qualified classname" to "fully qualified classname".
1 parent ae0e455 commit fe29651

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

user_guide_src/source/concepts/factories.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,17 @@ The following code loads **app/Libraries/Sub/SubLib.php** if it exists:
8686
.. literalinclude:: factories/013.php
8787
:lines: 2-
8888

89-
Passing Full Qualified Classname
90-
--------------------------------
89+
Passing Fully Qualified Classname
90+
---------------------------------
9191

92-
You could also request a full qualified classname:
92+
You could also request a fully qualified classname:
9393

9494
.. literalinclude:: factories/002.php
9595
:lines: 2-
9696

9797
It returns the instance of ``Blog\Models\UserModel`` if it exists.
9898

99-
.. note:: Prior to v4.4.0, when you requested a full qualified classname,
99+
.. note:: Prior to v4.4.0, when you requested a fully qualified classname,
100100
if you had only ``Blog\Models\UserModel``, the instance would be returned.
101101
But if you had both ``App\Models\UserModel`` and ``Blog\Models\UserModel``,
102102
the instance of ``App\Models\UserModel`` would be returned.
@@ -143,7 +143,7 @@ the ``Factories::define()`` method:
143143

144144
The first parameter is a component. The second parameter is a class alias
145145
(the first parameter to Factories magic static method), and the third parameter
146-
is the true full qualified classname to be loaded.
146+
is the true fully qualified classname to be loaded.
147147

148148
After that, if you load ``Myth\Auth\Models\UserModel`` with Factories, the
149149
``App\Models\UserModel`` instance will be returned:

0 commit comments

Comments
 (0)