Skip to content

Commit

Permalink
Remove ?static return type from test
Browse files Browse the repository at this point in the history
  • Loading branch information
sirreal committed Dec 11, 2024
1 parent 776d4b3 commit dd6d8cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function set_up(): void {
public function matches( $processor ): bool {
throw new Error( 'Matches called on test class.' );
}
public static function parse( string $input, int &$offset ): ?static {
public static function parse( string $input, int &$offset ) {
throw new Error( 'Parse called on test class.' );
}

Expand Down

0 comments on commit dd6d8cd

Please sign in to comment.