GetDKAN/pdlt

View on GitHub
src/TokenInterface.php

Summary

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

namespace PDLT;

/**
 * Lexical token.
 */
interface TokenInterface {

  /**
   * Retrieve the literal value stored for this token.
   *
   * @return string
   *   Literal value.
   */
  public function getLiteral(): string;

}