From c6e9dd870f8796c78557788a9e89a333d606a342 Mon Sep 17 00:00:00 2001 From: Peter Fox Date: Thu, 9 Feb 2023 11:14:07 +0000 Subject: [PATCH] Corrects in_memory file missing message. Fixes a typo in #55 --- src/Support/FeaturesFileDiscoverer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Support/FeaturesFileDiscoverer.php b/src/Support/FeaturesFileDiscoverer.php index 0d2d1ed..137b04e 100644 --- a/src/Support/FeaturesFileDiscoverer.php +++ b/src/Support/FeaturesFileDiscoverer.php @@ -30,6 +30,6 @@ public function find(): string return $path; } - throw new \RuntimeException(sprintf('`%s` file could be found.', $this->file)); + throw new \RuntimeException(sprintf('`%s` file could not be found.', $this->file)); } }