From 592b5b510f58b2ad75ccc0a30bd2d4ff2b0e0d67 Mon Sep 17 00:00:00 2001 From: Brian Schilt Date: Fri, 1 Apr 2022 16:18:30 -0700 Subject: [PATCH] Fixed typo in messaging. --- src/Audit/MissingModules.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Audit/MissingModules.php b/src/Audit/MissingModules.php index 06c7c26..95c251d 100644 --- a/src/Audit/MissingModules.php +++ b/src/Audit/MissingModules.php @@ -50,7 +50,7 @@ public function audit(Sandbox $sandbox) { }); $sandbox->setParameter('messages', array_values(array_map(function ($row) { - return "Cannot file {$row['type']} `{$row['name']}`. Expected to be in {$row['filename']}."; + return "Cannot find {$row['type']} `{$row['name']}`. Expected to be in {$row['filename']}."; }, $rows))); print_r($sandbox->getParameter('messages'));