SU-SWS/stanford_fields

View on GitHub
src/Service/FieldCacheInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Drupal\stanford_fields\Service;

/**
 * Interface FieldCacheInterface.
 *
 * @package Drupal\stanford_fields\Service
 */
interface FieldCacheInterface {

  /**
   * Invalidate entities that have date field values that recently passed by.
   */
  public function invalidateDateFieldsCache();

}