* @package WoltLabSuite\Core\Data */ interface IDeleteAction { /** * Deletes the relevant objects and returns the number of deleted objects. * * @return int */ public function delete(); /** * Validates the "delete" action. */ public function validateDelete(); }