Skip to content

Commit

Permalink
Fix GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
SerafimArts committed Aug 1, 2024
1 parent a1fc8c0 commit 7ce18ea
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/ParserInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@ interface ParserInterface
* Parses sources into an abstract source tree (AST) or list of AST nodes.
*
* @return iterable<array-key, TNode>
*
* @throws ParserExceptionInterface An error occurs before source processing
* @throws ParserExceptionInterface an error occurs before source processing
* starts, when the given source cannot be recognized or if the
* parser settings contain errors.
* @throws ParserRuntimeExceptionInterface An exception that occurs after
* parser settings contain errors
* @throws ParserRuntimeExceptionInterface an exception that occurs after
* starting the parsing and indicates problems in the analyzed
* source.
* source
*/
public function parse(ReadableInterface $source): iterable;
}

0 comments on commit 7ce18ea

Please sign in to comment.