__construct() public méthode

public __construct ( Nelmio\Alice\FixtureBuilder\ExpressionLanguage\ParserInterface $parser = null )
$parser Nelmio\Alice\FixtureBuilder\ExpressionLanguage\ParserInterface
 /**
  * @inheritdoc
  */
 public function __construct(ChainableTokenParserInterface $functionTokenParser, ParserInterface $parser = null)
 {
     parent::__construct($parser);
     if (null !== $parser && $functionTokenParser instanceof ParserAwareInterface) {
         $functionTokenParser = $functionTokenParser->withParser($parser);
     }
     $this->functionTokenParser = $functionTokenParser;
 }