MailCacheNone.php in Simplenews 8
Same filename and directory in other branches
Namespace
Drupal\simplenews\MailFile
src/Mail/MailCacheNone.phpView source
<?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;
}
}
Classes
Name | Description |
---|---|
MailCacheNone | Cache implementation that does not cache anything at all. |