Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
<?php | |
namespace Popy\Calendar\Parser; | |
/** | |
* Tokenizes a string format, flagging escaped characters as litterals. | |
*/ | |
interface FormatLexerInterface | |
{ | |
/** | |
* Tokenize input string format. | |
* | |
* @param string $format | |
* | |
* @return array<FormatToken> | |
*/ | |
public function tokenizeFormat($format); | |
} |