@@ -86,17 +86,17 @@ The following code loads **app/Libraries/Sub/SubLib.php** if it exists:
86
86
.. literalinclude :: factories/013.php
87
87
:lines: 2-
88
88
89
- Passing Full Qualified Classname
90
- --------------------------------
89
+ Passing Fully Qualified Classname
90
+ ---------------------------------
91
91
92
- You could also request a full qualified classname:
92
+ You could also request a fully qualified classname:
93
93
94
94
.. literalinclude :: factories/002.php
95
95
:lines: 2-
96
96
97
97
It returns the instance of ``Blog\Models\UserModel `` if it exists.
98
98
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,
100
100
if you had only ``Blog\Models\UserModel ``, the instance would be returned.
101
101
But if you had both ``App\Models\UserModel `` and ``Blog\Models\UserModel ``,
102
102
the instance of ``App\Models\UserModel `` would be returned.
@@ -143,7 +143,7 @@ the ``Factories::define()`` method:
143
143
144
144
The first parameter is a component. The second parameter is a class alias
145
145
(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.
147
147
148
148
After that, if you load ``Myth\Auth\Models\UserModel `` with Factories, the
149
149
``App\Models\UserModel `` instance will be returned:
0 commit comments