canParse() 공개 메소드

public canParse ( string $file ) : boolean
$file string
리턴 boolean
예제 #1
0
 /**
  * @dataProvider provideUnsupportedList
  */
 public function testCannotParseUnsupportedFiles(string $file)
 {
     $actual = $this->parser->canParse($file);
     $this->assertFalse($actual);
 }