simplenews-3.0.0-alpha1/src/Mail/MailCacheNone.php
src/Mail/MailCacheNone.php
<?php
namespace Drupal\simplenews\Mail;
/**
* Cache implementation that does not cache anything at all.
*
* @ingroup mail
*/
class MailCacheNone extends MailCacheStatic {
/**
* {@inheritdoc}
*/
public function isCacheable(MailInterface $mail, $group, $key) {
return FALSE;
}
}
