We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c6954e commit 9c9d27dCopy full SHA for 9c9d27d
1 file changed
user_guide_src/source/extending/core_classes.rst
@@ -105,15 +105,3 @@ If you need to use a constructor in your class make sure you extend the parent c
105
106
**Tip:** Any functions in your class that are named identically to the methods in the parent class will be used
107
instead of the native ones (this is known as “method overriding”). This allows you to substantially alter the CodeIgniter core.
108
-
109
-If you are extending the Controller core class, then be sure to extend your new class in your application controller’s
110
-constructors::
111
112
- <?php namespace App\Controllers;
113
114
- use App\BaseController;
115
116
- class Home extends BaseController {
117
118
- }
119
0 commit comments