mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-11 10:46:43 +02:00
chore: update CI files after update from 4.6.3 to 4.6.5
This commit is contained in:
parent
abf214757c
commit
a585362827
6 changed files with 28 additions and 8 deletions
|
|
@ -15,9 +15,14 @@ use ViewThemes\Theme;
|
|||
|
||||
/**
|
||||
* BaseController provides a convenient place for loading components and performing functions that are needed by all
|
||||
* your controllers. Extend this class in any new controllers: class Home extends BaseController
|
||||
* your controllers.
|
||||
*
|
||||
* For security be sure to declare any new methods as protected or private.
|
||||
* Extend this class in any new controllers:
|
||||
* ```
|
||||
* class Home extends BaseController
|
||||
* ```
|
||||
*
|
||||
* For security, be sure to declare any new methods as protected or private.
|
||||
*/
|
||||
|
||||
abstract class BaseController extends Controller
|
||||
|
|
@ -35,6 +40,8 @@ abstract class BaseController extends Controller
|
|||
ResponseInterface $response,
|
||||
LoggerInterface $logger,
|
||||
): void {
|
||||
// Load here all helpers you want to be available in your controllers that extend BaseController.
|
||||
// Caution: Do not put the this below the parent::initController() call below.
|
||||
$this->helpers = [...$this->helpers, 'auth', 'breadcrumb', 'svg', 'components', 'misc'];
|
||||
|
||||
// Do Not Edit This Line
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue