You are here

CloudFlareTimestampInterface.php in CloudFlare 8

Namespace

Drupal\cloudflare

File

src/CloudFlareTimestampInterface.php
View source
<?php

namespace Drupal\cloudflare;


/**
 * Provides an injectable facility for getting the current time.
 */
interface CloudFlareTimestampInterface {

  /**
   * Gets the current DateTime.
   *
   * @return \DateTime
   *   DateTime representing the current time.
   */
  public function now();

}

Interfaces

Namesort descending Description
CloudFlareTimestampInterface Provides an injectable facility for getting the current time.