createForParserNoFoundForFile() public static méthode

public static createForParserNoFoundForFile ( string $file ) : ParserNotFoundException
$file string
Résultat ParserNotFoundException
Exemple #1
0
 /**
  * Looks for the first suitable parser to parse the file.
  *
  * {@inheritdoc}
  */
 public function parse(string $file) : array
 {
     foreach ($this->parsers as $parser) {
         if ($parser->canParse($file)) {
             return $parser->parse($file);
         }
     }
     throw ParseExceptionFactory::createForParserNoFoundForFile($file);
 }