GetDKAN/pdlt

View on GitHub
src/ConverterInterface.php

Summary

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

namespace PDLT;

/**
 * Converts date formats using the supplied parser and compiler services.
 */
interface ConverterInterface {

  /**
   * Convert the supplied date format string.
   *
   * @param string $input_format
   *   Input date format.
   *
   * @return string
   *   Output date format.
   */
  public function convert(string $input_format): string;

}