chore: update CI4 to v4.6.4 + php and js packages to latest

This commit is contained in:
Yassine Doghri 2025-12-20 18:48:44 +00:00
commit 133e308603
36 changed files with 2015 additions and 1476 deletions

View file

@ -54,11 +54,16 @@ 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, 'svg', 'components', 'misc', 'seo', 'premium_podcasts'];
// Do Not Edit This Line
// Caution: Do not edit this line.
parent::initController($request, $response, $logger);
// Preload any models, libraries, etc, here.
// $this->session = service('session');
Theme::setTheme('app');
}
}