From 22790877c3e70f2d647bb119ddb292adf31e8f8e Mon Sep 17 00:00:00 2001 From: Konstantin Hatin Date: Thu, 19 Dec 2019 14:35:38 +0300 Subject: [PATCH] feat: add method to reset mappings --- src/Module/WireMock.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Module/WireMock.php b/src/Module/WireMock.php index acc45d9..527f91d 100644 --- a/src/Module/WireMock.php +++ b/src/Module/WireMock.php @@ -91,4 +91,9 @@ public function resetRequestJournalToWireMock() { $this->wireMock->resetAllRequests(); } + + public function resetMappingsToWireMock() + { + $this->wireMock->resetToDefault(); + } }