/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Email
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();
}