From 906eef0c3e28328bce9a1350ecabb62654263be6 Mon Sep 17 00:00:00 2001 From: Mateus Burigo <134167077+burigooth@users.noreply.github.com> Date: Fri, 27 Mar 2026 10:12:32 -0300 Subject: [PATCH] fix: correct typo in Prism exception message --- src/Contracts/ProviderMediaMapper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Contracts/ProviderMediaMapper.php b/src/Contracts/ProviderMediaMapper.php index 0b318f3ef..0f2c60ef4 100644 --- a/src/Contracts/ProviderMediaMapper.php +++ b/src/Contracts/ProviderMediaMapper.php @@ -26,7 +26,7 @@ protected function runValidation(): void $calledClass = static::class; - throw new PrismException("The $providerName provider does not support the mediums available in the provided `$calledClass`. Pleae consult the Prism documentation for more information on which mediums the $providerName provider supports."); + throw new PrismException("The $providerName provider does not support the mediums available in the provided `$calledClass`. Please consult the Prism documentation for more information on which mediums the $providerName provider supports."); } } }