withFlagParser() public method

public withFlagParser ( Nelmio\Alice\FixtureBuilder\Denormalizer\FlagParserInterface $parser ) : static
$parser Nelmio\Alice\FixtureBuilder\Denormalizer\FlagParserInterface
return static
 /**
  * @inheritdoc
  */
 public function withFlagParser(FlagParserInterface $parser)
 {
     $this->decoratedFlagAware->withFlagParser($parser);
     $clone = clone $this;
     $clone->parser = $parser;
     return $clone;
 }