You are here

Timestamp.php in CloudFlare 8

Namespace

Drupal\cloudflare

File

src/Timestamp.php
View source
<?php

namespace Drupal\cloudflare;


/**
 * Timestamp class to get datetime.
 *
 * @todo find a better approach. This was a hack to unblock automated testing.
 */
class Timestamp implements CloudFlareTimestampInterface {

  /**
   * {@inheritdoc}
   */
  public function now() {
    return new \DateTime();
  }

}

Classes

Namesort descending Description
Timestamp Timestamp class to get datetime.