[FIX] MktgLeadController + ContactController: rimuovi parent::__construct()

BaseController non ha costruttore — la chiamata parent::__construct()
causava Fatal Error "Cannot call constructor" su ogni richiesta.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
DevEnv nis2-agile 2026-03-09 12:18:14 +01:00
parent b1dcd4cbd7
commit b909136d53
2 changed files with 0 additions and 2 deletions

View File

@ -15,7 +15,6 @@ class ContactController extends BaseController
public function __construct()
{
parent::__construct();
$this->email = new EmailService();
}

View File

@ -23,7 +23,6 @@ class MktgLeadController extends BaseController
public function __construct()
{
parent::__construct();
$this->email = new EmailService();
}