/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Email
NameSizeModeActions
EmailConfigurationTesterInterface.php14540644editdlrm
EmailDataConfigurator.php55850644editdlrm
EmailLister.php29040644editdlrm
EmailLogEraserInterface.php15750644editdlrm
MailOption.php21700644editdlrm
SwiftMailerValidation.php21500644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Email/EmailLogEraserInterface.php (1575B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Email; /** * Interface EmailLogEraserInterface defines contract for email logs eraser. */ interface EmailLogEraserInterface { /** * Erase given email logs. * * @param int[] $mailLogIds * * @return array */ public function erase(array $mailLogIds); /** * Erase all email logs. * * @return bool TRUE if email logs where erased successfully or FALSE otherwise */ public function eraseAll(); }