Skip to content

Commit 9c9d27d

Browse files
authored
move Controller section to new page
1 parent 5c6954e commit 9c9d27d

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

user_guide_src/source/extending/core_classes.rst

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,3 @@ If you need to use a constructor in your class make sure you extend the parent c
105105

106106
**Tip:** Any functions in your class that are named identically to the methods in the parent class will be used
107107
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

Comments
 (0)