hello,
I’m trying to override the class Espo\Core\Mail\Account\GroupAccount\Hooks\AfterFet ch.php, am adding features in the emailToCase method.
I extended this class : Espo\Custom\Core\Mail\Account\GroupAccount\Hooks\A fterFetch.php , however the program does not consider the extension and works with the core file.
Does anyone have any ideas?
Thanks!
Code:
<?php
namespace Espo\Custom\Core\Mail\Account\GroupAccount\Hooks;
use \Espo\ORM\EntityManager;
class AfterFetch extends \Espo\Core\Mail\Account\GroupAccount\Hooks\AfterFe tch
{
//myMethod
}
I’m trying to override the class Espo\Core\Mail\Account\GroupAccount\Hooks\AfterFet ch.php, am adding features in the emailToCase method.
I extended this class : Espo\Custom\Core\Mail\Account\GroupAccount\Hooks\A fterFetch.php , however the program does not consider the extension and works with the core file.
Does anyone have any ideas?
Thanks!
Code:
<?php
namespace Espo\Custom\Core\Mail\Account\GroupAccount\Hooks;
use \Espo\ORM\EntityManager;
class AfterFetch extends \Espo\Core\Mail\Account\GroupAccount\Hooks\AfterFe tch
{
//myMethod
}
Comment