canParse() 공개 메소드

Method to determine if this parser can handle the query parameters. If so then the parser should return true and be able to return a DTQueryConfiguration
public canParse ( Request $request ) : boolean
$request Symfony\Component\HttpFoundation\Request The current request, that should be investigated
리턴 boolean true if the parser is able to parse the query parameters and to return a DTQueryConfiguration
 public function testCanParse()
 {
     $this->assertTrue($this->parser->canParse($this->request));
 }