chore: update CI files after update from 4.6.3 to 4.6.5

This commit is contained in:
Yassine Doghri 2026-02-17 21:09:55 +00:00
commit a585362827
No known key found for this signature in database
GPG key ID: 1F41CB39A01C099A
6 changed files with 28 additions and 8 deletions

View file

@ -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