Skip to content

Commit

Permalink
Fix method name on exception (#1038)
Browse files Browse the repository at this point in the history
The CallProcessorExceptionFactory called a non-existent method.
  • Loading branch information
robertbasic committed Jun 3, 2020
1 parent 1cc70b4 commit d9a06e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Generator/Caller/CallProcessorRegistry.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ public function process(
}
}

throw CallProcessorExceptionFactory::createForNoParserFoundForElement($methodCall);
throw CallProcessorExceptionFactory::createForNoProcessorFoundForMethodCall($methodCall);
}
}

0 comments on commit d9a06e4

Please sign in to comment.