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 an input FormatToken and returns a DateLexerInterface, or null if the
 * input token has to be considered as a litteral.
 */
interface SymbolParserInterface
{
    /**
     * Parse input symbol roken.
     *
     * @param FormatToken           $token
     * @param FormatParserInterface $parser
     *
     * @return DateLexerInterface|null
     */
    public function parseSymbol(FormatToken $token, FormatParserInterface $parser);
}