Skip to content

Commit

Permalink
Corrects in_memory file missing message.
Browse files Browse the repository at this point in the history
Fixes a typo in #55
  • Loading branch information
peterfox authored Feb 9, 2023
1 parent 1371d8b commit c6e9dd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Support/FeaturesFileDiscoverer.php
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
}

0 comments on commit c6e9dd8

Please sign in to comment.