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; | |
| /** | |
| * Parses a format string (usually using a FormatLexerInterface) then use | |
| * it to build a DateLexerInterface object. | |
| */ | |
| interface FormatParserInterface | |
| { | |
| /** | |
| * Parse input format. | |
| * | |
| * @param string $format | |
| * @param boolean $isRecursiveCall | |
| * | |
| * @return DateLexerInterface | |
| */ | |
| public function parseFormat($format, $isRecursiveCall = false); | |
| } |