Exemplo n.º 1
0
 public function __construct(Parser $parser = null)
 {
     $this->parser = $parser ?: Parser::create();
 }
Exemplo n.º 2
0
 /**
  * @test
  * @expectedException \JMS\Parser\SyntaxErrorException
  */
 public function selectorShouldNotBeNested()
 {
     $parser = Parser::create();
     $parser->parse('Article(1).Article(2)');
 }